diff --git a/ChangeLog b/ChangeLog index 6844fd020a..f65da297de 100644 --- a/ChangeLog +++ b/ChangeLog @@ -19,11 +19,13 @@ phpMyAdmin - ChangeLog + rfe #1433 Support relations with ndbcluster - bug #3962 Proper escaping of JSON export + rfe #1328 Optional ReCAPTCHA support ++ rfe #1434 Improvements to the table browsing navigation bar 4.0.5.0 (not yet released) - bug #3977 Not detected configuration storage - bug #3970 Pressing enter in the filter field reloads page - bug #3984 Cannot insert in this table (PHP < 5.4) +- bug #3989 Reloading privileges does not update the interface 4.0.4.0 (2013-06-17) - bug #3959 Using DefaultTabDatabase in NavigationTree for Database Click diff --git a/browse_foreigners.php b/browse_foreigners.php index 2a0efb53fa..d9441e18fe 100644 --- a/browse_foreigners.php +++ b/browse_foreigners.php @@ -241,7 +241,7 @@ if (is_array($foreignData['disp_row'])) { $val_ordered_current_row++; - if (PMA_strlen($val_ordered_current_val) <= $cfg['LimitChars']) { + if ($GLOBALS['PMA_String']::strlen($val_ordered_current_val) <= $cfg['LimitChars']) { $val_ordered_current_val = htmlspecialchars( $val_ordered_current_val ); @@ -251,11 +251,11 @@ if (is_array($foreignData['disp_row'])) { $val_ordered_current_val ); $val_ordered_current_val = htmlspecialchars( - PMA_substr($val_ordered_current_val, 0, $cfg['LimitChars']) + $GLOBALS['PMA_String']::substr($val_ordered_current_val, 0, $cfg['LimitChars']) . '...' ); } - if (PMA_strlen($key_ordered_current_val) <= $cfg['LimitChars']) { + if ($GLOBALS['PMA_String']::strlen($key_ordered_current_val) <= $cfg['LimitChars']) { $key_ordered_current_val = htmlspecialchars( $key_ordered_current_val ); @@ -265,7 +265,7 @@ if (is_array($foreignData['disp_row'])) { $key_ordered_current_val ); $key_ordered_current_val = htmlspecialchars( - PMA_substr( + $GLOBALS['PMA_String']::substr( $key_ordered_current_val, 0, $cfg['LimitChars'] ) . '...' ); diff --git a/doc/config.rst b/doc/config.rst index 877271d93c..f31e183cb5 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -1559,11 +1559,11 @@ Browse mode .. config:option:: $cfg['MaxRows'] :type: integer - :default: 30 + :default: 25 Number of rows displayed when browsing a result set and no LIMIT clause is used. If the result set contains more rows, "Previous" and - "Next" links will be shown. + "Next" links will be shown. Possible values: 25,50,100,250,500. .. config:option:: $cfg['Order'] diff --git a/js/ajax.js b/js/ajax.js index eab0e842ae..5b99c3f198 100644 --- a/js/ajax.js +++ b/js/ajax.js @@ -128,7 +128,7 @@ var AJAX = { // leave the browser deal with it natively (e.g: file download) // or leave an existing ajax event handler present elsewhere deal with it var href = $(this).attr('href'); - if (event.shiftKey || event.ctrlKey) { + if (typeof event != 'undefined' && (event.shiftKey || event.ctrlKey)) { return true; } else if ($(this).attr('target')) { return true; diff --git a/js/makegrid.js b/js/makegrid.js index 3a9ebb619c..f81518d789 100644 --- a/js/makegrid.js +++ b/js/makegrid.js @@ -1634,7 +1634,7 @@ function PMA_makegrid(t, enableResize, enableReorder, enableVisib, enableGridEdi e.preventDefault(); // get the click count and increase var clicks = $cell.data('clicks'); - clicks = (clicks === null) ? 1 : clicks + 1; + clicks = (typeof clicks === 'undefined') ? 1 : clicks + 1; if (clicks == 1) { // if there are no previous clicks, diff --git a/js/server_privileges.js b/js/server_privileges.js index 8dacea8ba4..7f31c93392 100644 --- a/js/server_privileges.js +++ b/js/server_privileges.js @@ -170,7 +170,6 @@ AJAX.registerTeardown('server_privileges.js', function () { $("#fieldset_add_user_login input[name='username']").die("focusout"); $("#fieldset_add_user a.ajax").die("click"); $('form[name=usersForm]').unbind('submit'); - $("#reload_privileges_anchor.ajax").die("click"); $("#fieldset_delete_user_footer #buttonGo.ajax").die('click'); $("a.edit_user_anchor.ajax").die('click'); $("#edit_user_dialog").find("form.ajax").die('submit'); @@ -252,29 +251,6 @@ AJAX.registerOnload('server_privileges.js', function () { });//end of Add New User AJAX event handler - - /** - * Ajax event handler for 'Reload Privileges' anchor - * - * @see PMA_ajaxShowMessage() - * @memberOf jQuery - * @name reload_privileges_click - */ - $("#reload_privileges_anchor.ajax").live("click", function (event) { - event.preventDefault(); - - var $msgbox = PMA_ajaxShowMessage(PMA_messages.strReloadingPrivileges); - - $.get($(this).attr("href"), {'ajax_request': true}, function (data) { - if (data.success === true) { - PMA_ajaxRemoveMessage($msgbox); - } else { - PMA_ajaxShowMessage(data.error, false); - } - }); //end $.get() - - }); //end of Reload Privileges Ajax event handler - /** * AJAX handler for 'Revoke User' * diff --git a/libraries/Config.class.php b/libraries/Config.class.php index 9a576ebd6c..076fbd137e 100644 --- a/libraries/Config.class.php +++ b/libraries/Config.class.php @@ -456,7 +456,7 @@ class PMA_Config } $commit = false; - if ( !isset($_SESSION['PMA_VERSION_COMMITDATA_' . $hash])) { + if (! isset($_SESSION['PMA_VERSION_COMMITDATA_' . $hash])) { $git_file_name = $git_folder . '/objects/' . substr($hash, 0, 2) . '/' . substr($hash, 2); if (file_exists($git_file_name) ) { @@ -469,7 +469,9 @@ class PMA_Config } else { $pack_names = array(); // work with packed data - if ($packs = @file_get_contents($git_folder . '/objects/info/packs')) { + if (file_exists($git_folder . '/objects/info/packs') + && $packs = @file_get_contents($git_folder . '/objects/info/packs') + ) { // File exists. Read it, parse the file to get the names of the // packs. (to look for them in .git/object/pack directory later) foreach (explode("\n", $packs) as $line) { diff --git a/libraries/DisplayResults.class.php b/libraries/DisplayResults.class.php index bc22105ad1..a675e8d385 100644 --- a/libraries/DisplayResults.class.php +++ b/libraries/DisplayResults.class.php @@ -874,8 +874,8 @@ class PMA_DisplayResults /** - * Prepare feilds followed by Show button for table navigation - * Start row, Number of rows, Headers every + * Prepare fields followed by Show button for table navigation + * Start row, Number of rows * * @param string $html_sql_query the sql encoded by html special * characters @@ -898,22 +898,26 @@ class PMA_DisplayResults . 'value="' . $html_sql_query . '" />' . '' - . '' - . __('Start row:') . ' ' . "\n" - . '' - . __('Number of rows:') . ' ' . "\n" - . ''; + . '" />' + . __('Number of rows:') . ' ' + . ''; + + $numberOfRowsChoices = array(25,50,100,250,500); + foreach($numberOfRowsChoices as $oneNumberOfRowsChoice) { + $additional_fields_html .= ''; + } + $additional_fields_html .= ''; if ($GLOBALS['cfg']['ShowDisplayDirection']) { - // Display mode (horizontal/vertical and repeat headers) + // Display mode (horizontal/vertical) $additional_fields_html .= __('Mode:') . ' ' . "\n"; $choices = array( 'horizontal' => __('horizontal'), @@ -929,13 +933,6 @@ class PMA_DisplayResults unset($choices); } - $additional_fields_html .= sprintf( - __('Headers every %s rows'), - ' ' - ); - return $additional_fields_html; } // end of the '_getAdditionalFieldsForTableNavigation()' function @@ -3657,11 +3654,11 @@ class PMA_DisplayResults // if a transform function for blob is set, none of these // replacements will be made - if ((PMA_strlen($column) > $GLOBALS['cfg']['LimitChars']) + if (($GLOBALS['PMA_String']::strlen($column) > $GLOBALS['cfg']['LimitChars']) && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) && ! $this->_isNeedToSyntaxHighlight(strtolower($meta->name)) ) { - $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) + $column = $GLOBALS['PMA_String']::substr($column, 0, $GLOBALS['cfg']['LimitChars']) . '...'; $is_field_truncated = true; } @@ -3748,10 +3745,10 @@ class PMA_DisplayResults // Convert to WKT format $wktval = PMA_Util::asWKT($column); - if ((PMA_strlen($wktval) > $GLOBALS['cfg']['LimitChars']) + if (($GLOBALS['PMA_String']::strlen($wktval) > $GLOBALS['cfg']['LimitChars']) && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) ) { - $wktval = PMA_substr($wktval, 0, $GLOBALS['cfg']['LimitChars']) + $wktval = $GLOBALS['PMA_String']::substr($wktval, 0, $GLOBALS['cfg']['LimitChars']) . '...'; $is_field_truncated = true; } @@ -3772,11 +3769,11 @@ class PMA_DisplayResults $wkbval = $this->_displayBinaryAsPrintable($column, 'binary', 8); - if ((PMA_strlen($wkbval) > $GLOBALS['cfg']['LimitChars']) + if (($GLOBALS['PMA_String']::strlen($wkbval) > $GLOBALS['cfg']['LimitChars']) && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) ) { $wkbval - = PMA_substr($wkbval, 0, $GLOBALS['cfg']['LimitChars']) + = $GLOBALS['PMA_String']::substr($wkbval, 0, $GLOBALS['cfg']['LimitChars']) . '...'; $is_field_truncated = true; } @@ -3859,12 +3856,12 @@ class PMA_DisplayResults // Cut all fields to $GLOBALS['cfg']['LimitChars'] // (unless it's a link-type transformation) - if (PMA_strlen($column) > $GLOBALS['cfg']['LimitChars'] + if ($GLOBALS['PMA_String']::strlen($column) > $GLOBALS['cfg']['LimitChars'] && ($_SESSION['tmp_user_values']['display_text'] == self::DISPLAY_PARTIAL_TEXT) && gettype($transformation_plugin) == "object" && ! strpos($transformation_plugin->getName(), 'Link') === true ) { - $column = PMA_substr($column, 0, $GLOBALS['cfg']['LimitChars']) + $column = $GLOBALS['PMA_String']::substr($column, 0, $GLOBALS['cfg']['LimitChars']) . '...'; $is_field_truncated = true; } @@ -4229,11 +4226,7 @@ class PMA_DisplayResults = $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 ( + if ( empty($_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells']) ) { $_SESSION['tmp_user_values']['query'][$sql_md5]['repeat_cells'] @@ -6015,7 +6008,7 @@ class PMA_DisplayResults ) { $content = bin2hex($content); if ($hexlength !== null) { - $content = PMA_substr($content, $hexlength); + $content = $GLOBALS['PMA_String']::substr($content, $hexlength); } } else { $content = htmlspecialchars( diff --git a/libraries/StringMB.class.php b/libraries/StringMB.class.php new file mode 100644 index 0000000000..2cd053f581 --- /dev/null +++ b/libraries/StringMB.class.php @@ -0,0 +1,74 @@ + diff --git a/libraries/StringNative.class.php b/libraries/StringNative.class.php new file mode 100644 index 0000000000..51021c2450 --- /dev/null +++ b/libraries/StringNative.class.php @@ -0,0 +1,73 @@ + diff --git a/libraries/Util.class.php b/libraries/Util.class.php index 7f03c3d804..67439eaa98 100644 --- a/libraries/Util.class.php +++ b/libraries/Util.class.php @@ -747,8 +747,8 @@ class PMA_Util * - use PMA_Response() to transmit the message and exit */ if (isset($GLOBALS['is_ajax_request']) - && $GLOBALS['is_ajax_request'] == true - ) { + && $GLOBALS['is_ajax_request'] == true + ) { $response = PMA_Response::getInstance(); $response->isSuccess(false); $response->addJSON('message', $error_msg); @@ -3318,7 +3318,9 @@ class PMA_Util /* Fetch columns list if required */ if (strpos($string, '@COLUMNS@') !== false) { - $columns_list = $GLOBALS['dbi']->getColumns($GLOBALS['db'], $GLOBALS['table']); + $columns_list = $GLOBALS['dbi']->getColumns( + $GLOBALS['db'], $GLOBALS['table'] + ); // sometimes the table no longer exists at this point if (! is_null($columns_list)) { diff --git a/libraries/config.default.php b/libraries/config.default.php index 42ec0dd51a..67170402b2 100644 --- a/libraries/config.default.php +++ b/libraries/config.default.php @@ -1040,10 +1040,11 @@ $cfg['ShowAll'] = false; /** * Number of rows displayed when browsing a result set. If the result * set contains more rows, "Previous" and "Next". + * Possible values: 25,50,100,250,500 * * @global integer $cfg['MaxRows'] */ -$cfg['MaxRows'] = 30; +$cfg['MaxRows'] = 25; /** * default for 'ORDER BY' clause (valid values are 'ASC', 'DESC' or 'SMART' -ie diff --git a/libraries/config.values.php b/libraries/config.values.php index dc29772318..c7e103a269 100644 --- a/libraries/config.values.php +++ b/libraries/config.values.php @@ -50,6 +50,7 @@ $cfg_db['NavigationBarIconic'] = array( false => __('Text'), 'both' => __('Both') ); +$cfg_db['MaxRows'] = array(25,50,100,250,500); $cfg_db['Order'] = array('ASC', 'DESC', 'SMART'); $cfg_db['RowActionLinks'] = array( 'none' => __('Nowhere'), diff --git a/libraries/navigation/NavigationTree.class.php b/libraries/navigation/NavigationTree.class.php index a8a6827ccb..dc04dd995a 100644 --- a/libraries/navigation/NavigationTree.class.php +++ b/libraries/navigation/NavigationTree.class.php @@ -886,12 +886,9 @@ class PMA_NavigationTree 'indexes' ); $parent = $node->parents(false, true); + $isNewView = $parent[0]->real_name == 'views' && $node->isNew == true; if ($parent[0]->type == Node::CONTAINER - && (in_array($parent[0]->real_name, $haveAjax) - || ($parent[0]->real_name == 'views' - && $node->isNew == true - ) - ) + && (in_array($parent[0]->real_name, $haveAjax) || $isNewView) ) { $linkClass = ' class="ajax"'; } diff --git a/libraries/navigation/Nodes/Node_Database.class.php b/libraries/navigation/Nodes/Node_Database.class.php index 7c2a1717b4..46c555fd14 100644 --- a/libraries/navigation/Nodes/Node_Database.class.php +++ b/libraries/navigation/Nodes/Node_Database.class.php @@ -82,7 +82,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'views': @@ -113,7 +115,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'procedures': @@ -141,7 +145,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'functions': @@ -169,7 +175,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'events': @@ -196,7 +204,9 @@ class Node_Database extends Node ); $query .= "%'"; } - $retval = $GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = $GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; default: diff --git a/libraries/navigation/Nodes/Node_Table.class.php b/libraries/navigation/Nodes/Node_Table.class.php index 3555254f17..e5d4d2d77e 100644 --- a/libraries/navigation/Nodes/Node_Table.class.php +++ b/libraries/navigation/Nodes/Node_Table.class.php @@ -69,14 +69,18 @@ class Node_Table extends Node $db = PMA_Util::backquote($db); $table = PMA_Util::backquote($table); $query = "SHOW COLUMNS FROM $table FROM $db"; - $retval = (int)$GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = (int)$GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; case 'indexes': $db = PMA_Util::backquote($db); $table = PMA_Util::backquote($table); $query = "SHOW INDEXES FROM $table FROM $db"; - $retval = (int)$GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = (int)$GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); break; case 'triggers': if (! $GLOBALS['cfg']['Servers'][$GLOBALS['server']]['DisableIS']) { @@ -91,7 +95,9 @@ class Node_Table extends Node $db = PMA_Util::backquote($db); $table = PMA_Util::sqlAddSlashes($table); $query = "SHOW TRIGGERS FROM $db WHERE `Table` = '$table'"; - $retval = (int)$GLOBALS['dbi']->numRows($GLOBALS['dbi']->tryQuery($query)); + $retval = (int)$GLOBALS['dbi']->numRows( + $GLOBALS['dbi']->tryQuery($query) + ); } break; default: diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 79da986943..dfb62d0c8c 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -334,7 +334,7 @@ function PMA_getSqlQueryAndCreateDbBeforeCopy() 'SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1 ); if ($lower_case_table_names === '1') { - $_REQUEST['newname'] = PMA_strtolower($_REQUEST['newname']); + $_REQUEST['newname'] = $GLOBALS['PMA_String']::strtolower($_REQUEST['newname']); } } diff --git a/libraries/parse_analyze.inc.php b/libraries/parse_analyze.inc.php index 78f58987dc..25373ed0cd 100644 --- a/libraries/parse_analyze.inc.php +++ b/libraries/parse_analyze.inc.php @@ -73,6 +73,31 @@ $is_count = isset($analyzed_sql[0]['queryflags']['is_count']); // check for a real SELECT ... FROM $is_select = isset($analyzed_sql[0]['queryflags']['select_from']); +// checks whether the sorting order should be remembered +if ($GLOBALS['cfg']['RememberSorting'] + && ! ($is_count || $is_export || $is_func || $is_analyse) + && isset($analyzed_sql[0]['select_expr']) + && (count($analyzed_sql[0]['select_expr']) == 0) + && isset($analyzed_sql[0]['queryflags']['select_from']) + && count($analyzed_sql[0]['table_ref']) == 1 +) { + $is_remember_sorting_order = true; +} else { + $is_remember_sorting_order = false; +} + +// checks whether a LIMIT clause should be added to the query +if (($_SESSION['tmp_user_values']['max_rows'] != 'all') + && ! ($is_count || $is_export || $is_func || $is_analyse) + && isset($analyzed_sql[0]['queryflags']['select_from']) + && ! isset($analyzed_sql[0]['queryflags']['offset']) + && empty($analyzed_sql[0]['limit_clause']) +) { + $is_append_limit_clause = true; +} else { + $is_append_limit_clause = false; +} + // If the query is a Select, extract the db and table names and modify // $db and $table, to have correct page headers, links and left frame. // db and table name may be enclosed with backquotes, db is optionnal, diff --git a/libraries/plugins/transformations/abstract/SubstringTransformationsPlugin.class.php b/libraries/plugins/transformations/abstract/SubstringTransformationsPlugin.class.php index 2de48e6bb0..0d8d048696 100644 --- a/libraries/plugins/transformations/abstract/SubstringTransformationsPlugin.class.php +++ b/libraries/plugins/transformations/abstract/SubstringTransformationsPlugin.class.php @@ -64,9 +64,9 @@ abstract class SubstringTransformationsPlugin extends TransformationsPlugin $newtext = ''; if ($options[1] != 'all') { - $newtext = PMA_substr($buffer, $options[0], $options[1]); + $newtext = $GLOBALS['PMA_String']::substr($buffer, $options[0], $options[1]); } else { - $newtext = PMA_substr($buffer, $options[0]); + $newtext = $GLOBALS['PMA_String']::substr($buffer, $options[0]); } $length = strlen($newtext); diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index dd6054d885..b684161a42 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -970,7 +970,7 @@ function PMA_buildForeignDropdown($foreign, $data, $mode) } foreach ($foreign as $key => $value) { - if (PMA_strlen($value) <= $GLOBALS['cfg']['LimitChars']) { + if ($GLOBALS['PMA_String']::strlen($value) <= $GLOBALS['cfg']['LimitChars']) { $vtitle = ''; $value = htmlspecialchars($value); } else { diff --git a/libraries/server_bin_log.lib.php b/libraries/server_bin_log.lib.php index a1dcdfc585..7d471c9d64 100644 --- a/libraries/server_bin_log.lib.php +++ b/libraries/server_bin_log.lib.php @@ -234,9 +234,9 @@ function PMA_getAllLogItemInfo($result, $dontlimitchars) $odd_row = true; while ($value = $GLOBALS['dbi']->fetchAssoc($result)) { if (! $dontlimitchars - && PMA_strlen($value['Info']) > $GLOBALS['cfg']['LimitChars'] + && $GLOBALS['PMA_String']::strlen($value['Info']) > $GLOBALS['cfg']['LimitChars'] ) { - $value['Info'] = PMA_substr( + $value['Info'] = $GLOBALS['PMA_String']::substr( $value['Info'], 0, $GLOBALS['cfg']['LimitChars'] ) . '...'; } diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index 48e98c19b6..7b8dc0fad2 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -2991,8 +2991,7 @@ function PMA_getHtmlForDisplayUserOverviewPage($link_edit, $pmaThemeImage, PMA_Message::NOTICE ); $flushLink = ''; + . 'flush_privileges=1" id="reload_privileges_anchor">'; $flushnote->addParam( $flushLink, false diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index f92d15e34e..dc69622922 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -648,4 +648,56 @@ function PMA_getHtmlForOptionsList($values, $selected_values) } return $options; } + +/** + * Get HTML for the Bookmark form + * + * @param string $db the current database + * @param string $goto goto page url + * @param string $bkm_sql_query the query to be bookmarked + * @param string $bkm_user the user creating the bookmark + */ +function PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query, $bkm_user) +{ + $html = ''; + $html .= PMA_generate_common_hidden_inputs(); + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= PMA_Util::getIcon( + 'b_bookmark.png', __('Bookmark this SQL query'), true + ); + $html .= ''; + $html .= ''; + $html .= '' . __('Label:') . ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= '' + . __('Let every user access this bookmark') + . ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + $html .= ''; + + return $html; +} ?> diff --git a/libraries/sqlparser.lib.php b/libraries/sqlparser.lib.php index 9d27f4c734..831d2d54fe 100644 --- a/libraries/sqlparser.lib.php +++ b/libraries/sqlparser.lib.php @@ -229,7 +229,7 @@ function PMA_SQP_parse($sql) $sql = str_replace("\r\n", "\n", $sql); $sql = str_replace("\r", "\n", $sql); - $len = PMA_strlen($sql); + $len = $GLOBALS['PMA_String']::strlen($sql); if ($len == 0) { return array(); } @@ -295,7 +295,7 @@ function PMA_SQP_parse($sql) $this_was_quote = false; while ($count2 < $len) { - $c = PMA_substr($sql, $count2, 1); + $c = $GLOBALS['PMA_String']::substr($sql, $count2, 1); $count1 = $count2; $previous_was_space = $this_was_space; @@ -327,11 +327,11 @@ function PMA_SQP_parse($sql) // MySQL style # // C style /* */ // ANSI style -- - $next_c = PMA_substr($sql, $count2 + 1, 1); + $next_c = $GLOBALS['PMA_String']::substr($sql, $count2 + 1, 1); if (($c == '#') || (($count2 + 1 < $len) && ($c == '/') && ($next_c == '*')) || (($count2 + 2 == $len) && ($c == '-') && ($next_c == '-')) - || (($count2 + 2 < $len) && ($c == '-') && ($next_c == '-') && ((PMA_substr($sql, $count2 + 2, 1) <= ' '))) + || (($count2 + 2 < $len) && ($c == '-') && ($next_c == '-') && (($GLOBALS['PMA_String']::substr($sql, $count2 + 2, 1) <= ' '))) ) { $count2++; $pos = 0; @@ -341,24 +341,24 @@ function PMA_SQP_parse($sql) $type = 'mysql'; case '-': $type = 'ansi'; - $pos = PMA_strpos($sql, "\n", $count2); + $pos = $GLOBALS['PMA_String']::strpos($sql, "\n", $count2); break; case '/': $type = 'c'; - $pos = PMA_strpos($sql, '*/', $count2); + $pos = $GLOBALS['PMA_String']::strpos($sql, '*/', $count2); $pos += 2; break; default: break; } // end switch $count2 = ($pos < $count2) ? $len : $pos; - $str = PMA_substr($sql, $count1, $count2 - $count1); + $str = $GLOBALS['PMA_String']::substr($sql, $count1, $count2 - $count1); PMA_SQP_arrayAdd($sql_array, 'comment_' . $type, $str, $arraysize); continue; } // end if // Checks for something inside quotation marks - if (PMA_strpos($quote_list, $c) !== false) { + if ($GLOBALS['PMA_String']::strpos($quote_list, $c) !== false) { $startquotepos = $count2; $quotetype = $c; $count2++; @@ -366,7 +366,7 @@ function PMA_SQP_parse($sql) $oldpos = 0; do { $oldpos = $pos; - $pos = PMA_strpos(' ' . $sql, $quotetype, $oldpos + 1) - 1; + $pos = $GLOBALS['PMA_String']::strpos(' ' . $sql, $quotetype, $oldpos + 1) - 1; // ($pos === false) if ($pos < 0) { if ($c == '`') { @@ -381,7 +381,7 @@ function PMA_SQP_parse($sql) * * SELECT * FROM `table` */ - $pos_quote_separator = PMA_strpos( + $pos_quote_separator = $GLOBALS['PMA_String']::strpos( ' ' . $sql, $GLOBALS['sql_delimiter'], $oldpos + 1 ) - 1; if ($pos_quote_separator < 0) { @@ -391,8 +391,8 @@ function PMA_SQP_parse($sql) $pos = $len; } else { $len += 1; - $sql = PMA_substr($sql, 0, $pos_quote_separator) - . '`' . PMA_substr($sql, $pos_quote_separator); + $sql = $GLOBALS['PMA_String']::substr($sql, 0, $pos_quote_separator) + . '`' . $GLOBALS['PMA_String']::substr($sql, $pos_quote_separator); $sql_array['raw'] = $sql; $pos = $pos_quote_separator; } @@ -427,8 +427,8 @@ function PMA_SQP_parse($sql) $pos ++; continue; } elseif (($pos + 1 < $len) - && (PMA_substr($sql, $pos, 1) == $quotetype) - && (PMA_substr($sql, $pos + 1, 1) == $quotetype) + && ($GLOBALS['PMA_String']::substr($sql, $pos, 1) == $quotetype) + && ($GLOBALS['PMA_String']::substr($sql, $pos + 1, 1) == $quotetype) ) { $pos = $pos + 2; continue; @@ -456,27 +456,27 @@ function PMA_SQP_parse($sql) default: break; } // end switch - $data = PMA_substr($sql, $count1, $count2 - $count1); + $data = $GLOBALS['PMA_String']::substr($sql, $count1, $count2 - $count1); PMA_SQP_arrayAdd($sql_array, $type, $data, $arraysize); continue; } // Checks for brackets - if (PMA_strpos($bracket_list, $c) !== false) { + if ($GLOBALS['PMA_String']::strpos($bracket_list, $c) !== false) { // All bracket tokens are only one item long $this_was_bracket = true; $count2++; $type_type = ''; - if (PMA_strpos('([{', $c) !== false) { + if ($GLOBALS['PMA_String']::strpos('([{', $c) !== false) { $type_type = 'open'; } else { $type_type = 'close'; } $type_style = ''; - if (PMA_strpos('()', $c) !== false) { + if ($GLOBALS['PMA_String']::strpos('()', $c) !== false) { $type_style = 'round'; - } elseif (PMA_strpos('[]', $c) !== false) { + } elseif ($GLOBALS['PMA_String']::strpos('[]', $c) !== false) { $type_style = 'square'; } else { $type_style = 'curly'; @@ -492,7 +492,7 @@ function PMA_SQP_parse($sql) var_dump(PMA_STR_isSqlIdentifier($c, false)); var_dump($c == '@'); var_dump($c == '.'); - var_dump(PMA_STR_isDigit(PMA_substr($sql, $count2 + 1, 1))); + var_dump(PMA_STR_isDigit($GLOBALS['PMA_String']::substr($sql, $count2 + 1, 1))); var_dump($previous_was_space); var_dump($previous_was_bracket); var_dump($previous_was_listsep); @@ -503,11 +503,11 @@ function PMA_SQP_parse($sql) if (PMA_STR_isSqlIdentifier($c, false) || $c == '@' || ($c == '.' - && PMA_STR_isDigit(PMA_substr($sql, $count2 + 1, 1)) + && PMA_STR_isDigit($GLOBALS['PMA_String']::substr($sql, $count2 + 1, 1)) && ($previous_was_space || $previous_was_bracket || $previous_was_listsep)) ) { /* DEBUG - echo PMA_substr($sql, $count2); + echo $GLOBALS['PMA_String']::substr($sql, $count2); echo ''; */ @@ -530,7 +530,7 @@ function PMA_SQP_parse($sql) $is_digit && $c == '0' && $count2 < $len - && PMA_substr($sql, $count2, 1) == 'x' + && $GLOBALS['PMA_String']::substr($sql, $count2, 1) == 'x' ); $is_float_digit = $c == '.'; $is_float_digit_exponent = false; @@ -560,8 +560,8 @@ function PMA_SQP_parse($sql) unset($pos); } - while (($count2 < $len) && PMA_STR_isSqlIdentifier(PMA_substr($sql, $count2, 1), ($is_sql_variable || $is_digit))) { - $c2 = PMA_substr($sql, $count2, 1); + while (($count2 < $len) && PMA_STR_isSqlIdentifier($GLOBALS['PMA_String']::substr($sql, $count2, 1), ($is_sql_variable || $is_digit))) { + $c2 = $GLOBALS['PMA_String']::substr($sql, $count2, 1); if ($is_sql_variable && ($c2 == '.')) { $count2++; continue; @@ -575,7 +575,7 @@ function PMA_SQP_parse($sql) $debugstr = __('Invalid Identifer') . ' @ ' . ($count1+1) . "\n" . 'STR: ' . htmlspecialchars( - PMA_substr($sql, $count1, $count2 - $count1) + $GLOBALS['PMA_String']::substr($sql, $count1, $count2 - $count1) ); PMA_SQP_throwError($debugstr, $sql); return $sql_array; @@ -604,7 +604,7 @@ function PMA_SQP_parse($sql) } // end while $l = $count2 - $count1; - $str = PMA_substr($sql, $count1, $l); + $str = $GLOBALS['PMA_String']::substr($sql, $count1, $l); $type = ''; if ($is_digit || $is_float_digit || $is_hex_digit) { @@ -629,15 +629,15 @@ function PMA_SQP_parse($sql) } // Checks for punct - if (PMA_strpos($allpunct_list, $c) !== false) { - while (($count2 < $len) && PMA_strpos($allpunct_list, PMA_substr($sql, $count2, 1)) !== false) { + if ($GLOBALS['PMA_String']::strpos($allpunct_list, $c) !== false) { + while (($count2 < $len) && $GLOBALS['PMA_String']::strpos($allpunct_list, $GLOBALS['PMA_String']::substr($sql, $count2, 1)) !== false) { $count2++; } $l = $count2 - $count1; if ($l == 1) { $punct_data = $c; } else { - $punct_data = PMA_substr($sql, $count1, $l); + $punct_data = $GLOBALS['PMA_String']::substr($sql, $count1, $l); } // Special case, sometimes, althought two characters are @@ -678,12 +678,12 @@ function PMA_SQP_parse($sql) if (($first == ',') || ($first == ';') || ($first == '.') || ($first == '*')) { $count2 = $count1 + 1; $punct_data = $first; - } elseif (($last2 == '/*') || (($last2 == '--') && ($count2 == $len || PMA_substr($sql, $count2, 1) <= ' '))) { + } elseif (($last2 == '/*') || (($last2 == '--') && ($count2 == $len || $GLOBALS['PMA_String']::substr($sql, $count2, 1) <= ' '))) { $count2 -= 2; - $punct_data = PMA_substr($sql, $count1, $count2 - $count1); + $punct_data = $GLOBALS['PMA_String']::substr($sql, $count1, $count2 - $count1); } elseif (($last == '-') || ($last == '+') || ($last == '!')) { $count2--; - $punct_data = PMA_substr($sql, $count1, $count2 - $count1); + $punct_data = $GLOBALS['PMA_String']::substr($sql, $count1, $count2 - $count1); } elseif ($last != '~') { /** * @todo for negation operator, split in 2 tokens ? @@ -706,7 +706,7 @@ function PMA_SQP_parse($sql) $count2++; $debugstr = 'C1 C2 LEN: ' . $count1 . ' ' . $count2 . ' ' . $len . "\n" - . 'STR: ' . PMA_substr($sql, $count1, $count2 - $count1) . "\n"; + . 'STR: ' . $GLOBALS['PMA_String']::substr($sql, $count1, $count2 - $count1) . "\n"; PMA_SQP_bug($debugstr, $sql); return $sql_array; @@ -1809,10 +1809,10 @@ function PMA_SQP_analyze($arr) $seen_order_by = true; // Here we assume that the ORDER BY keywords took // exactly 8 characters. - // We use PMA_substr() to be charset-safe; otherwise + // We use $GLOBALS['PMA_String']::substr() to be charset-safe; otherwise // if the table name contains accents, the unsorted // query would be missing some characters. - $unsorted_query = PMA_substr( + $unsorted_query = $GLOBALS['PMA_String']::substr( $arr['raw'], 0, $arr[$i]['pos'] - 8 ); $in_order_by = true; diff --git a/libraries/string.lib.php b/libraries/string.lib.php index 604501689f..a05939b2c4 100644 --- a/libraries/string.lib.php +++ b/libraries/string.lib.php @@ -21,9 +21,11 @@ if (! defined('PHPMYADMIN')) { */ if (@function_exists('mb_strlen')) { mb_internal_encoding('utf-8'); - include './libraries/string_mb.lib.php'; + include './libraries/StringMB.class.php'; + $PMA_String = new PMA_StringMB(); } else { - include './libraries/string_native.lib.php'; + include './libraries/StringNative.class.php'; + $PMA_String = new PMA_StringNative(); } /** @@ -48,7 +50,7 @@ function PMA_STR_charIsEscaped($string, $pos, $start = 0) { $pos = max(intval($pos), 0); $start = max(intval($start), 0); - $len = PMA_strlen($string); + $len = $GLOBALS['PMA_String']::strlen($string); // Base case: // Check for string length or invalid input or special case of input // (pos == $start) @@ -58,7 +60,7 @@ function PMA_STR_charIsEscaped($string, $pos, $start = 0) $pos--; $escaped = false; - while ($pos >= $start && PMA_substr($string, $pos, 1) == '\\') { + while ($pos >= $start && $GLOBALS['PMA_String']::substr($string, $pos, 1) == '\\') { $escaped = !$escaped; $pos--; } // end while diff --git a/libraries/string_mb.lib.php b/libraries/string_mb.lib.php deleted file mode 100644 index 452debf1e5..0000000000 --- a/libraries/string_mb.lib.php +++ /dev/null @@ -1,71 +0,0 @@ - diff --git a/libraries/string_native.lib.php b/libraries/string_native.lib.php deleted file mode 100644 index 4154959efc..0000000000 --- a/libraries/string_native.lib.php +++ /dev/null @@ -1,71 +0,0 @@ - diff --git a/pmd_save_pos.php b/pmd_save_pos.php index 420720697e..cd95ddb1b8 100644 --- a/pmd_save_pos.php +++ b/pmd_save_pos.php @@ -22,11 +22,6 @@ if (! $cfgRelation['designerwork']) { */ $post_params = array( 'die_save_pos', - 'server', - 't_h', - 't_v', - 't_x', - 't_y' ); foreach ($post_params as $one_post_param) { @@ -35,7 +30,7 @@ foreach ($post_params as $one_post_param) { } } -foreach ($t_x as $key => $value) { +foreach ($_POST['t_x'] as $key => $value) { // table name decode (post PDF exp/imp) $KEY = empty($_POST['IS_AJAX']) ? urldecode($key) : $key; list($DB,$TAB) = explode(".", $KEY); @@ -54,10 +49,10 @@ foreach ($t_x as $key => $value) { . ' VALUES (' . '\'' . PMA_Util::sqlAddSlashes($DB) . '\', ' . '\'' . PMA_Util::sqlAddSlashes($TAB) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_x[$key]) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_y[$key]) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_v[$key]) . '\', ' - . '\'' . PMA_Util::sqlAddSlashes($t_h[$key]) . '\')', + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_x'][$key]) . '\', ' + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_y'][$key]) . '\', ' + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_v'][$key]) . '\', ' + . '\'' . PMA_Util::sqlAddSlashes($_POST['t_h'][$key]) . '\')', true, PMA_DatabaseInterface::QUERY_STORE ); } diff --git a/po/af.po b/po/af.po index 7304484244..99ca04b38a 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-02-13 18:58+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Afrikaans %s" msgstr[1] "%s resultate binne tabel %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Beloer Data" @@ -2581,14 +2582,14 @@ msgstr "Beloer Data" msgid "Delete the matches for the %s table?" msgstr "Stort data vir tabel" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Verwyder" @@ -2666,47 +2667,36 @@ msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Sa" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Hoeveelheid rye per bladsy" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Ma" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horisontale" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikale" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2734,96 +2724,96 @@ msgstr "" msgid "Options" msgstr "Operasies" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Gedeeltelike Tekste" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Volle Tekste" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Relasie uitsig" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy msgid "Relational display column" msgstr "Relasie uitsig" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy msgid "Hide browser transformation" msgstr "Wys PHP informasie" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Die ry is verwyder" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Vermoor" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "in navraag" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Vertoon rye" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2832,8 +2822,8 @@ msgstr "" msgid "With selected:" msgstr "Met gekose:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2844,48 +2834,48 @@ msgstr "Met gekose:" msgid "Check All" msgstr "Kies Alles" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Drukker mooi (print view)" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "Kolom Kommentaar word vertoon" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Skakel nie gevind nie" @@ -2962,38 +2952,38 @@ msgstr "Geen indeks gedefinieer!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indekse" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Uniek" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Kommentaar" @@ -3027,14 +3017,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktuur" @@ -3047,12 +3037,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Soek" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Voeg by" @@ -3182,16 +3172,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Geen tabelle" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3442,7 +3432,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3793,7 +3783,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3854,7 +3844,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3893,50 +3883,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Maak Leeg" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 #, fuzzy msgid "Creation" msgstr "Skep" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "" @@ -4059,60 +4049,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Volgende" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Onbeskikbaar" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Ongebalanseerde kwotasie-teken" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4123,7 +4113,7 @@ msgstr "Ongebalanseerde kwotasie-teken" msgid "structure" msgstr "Struktuur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4133,7 +4123,7 @@ msgstr "Struktuur" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4145,35 +4135,35 @@ msgstr "" msgid "structure and data" msgstr "Struktuur en data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Voltooi invoegings" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Uitgebreide toevoegings" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6192,8 +6182,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Gebruiker Naam:" @@ -6609,7 +6599,7 @@ msgstr "databasisse" msgid "Table(s):" msgstr "Tabel" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7190,7 +7180,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL het niks teruggegee nie (dus nul rye)." @@ -7312,11 +7302,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7371,7 +7361,7 @@ msgstr "Vervang tabel data met leer (file)" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7595,18 +7585,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Verander tabel sorteer volgens" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7710,17 +7700,17 @@ msgid "Drop the database (DROP)" msgstr "Geen databasisse" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Slegs struktuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktuur en data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Slegs Data" @@ -8159,7 +8149,7 @@ msgstr "Kolom name" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8167,7 +8157,7 @@ msgstr "Gasheer (host)" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8185,7 +8175,7 @@ msgstr "PHP Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9282,7 +9272,7 @@ msgstr "Kenmerke" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9452,7 +9442,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "PHP Version" @@ -9912,60 +9902,273 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Jy het 'n nuwe gebruiker bygevoeg." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Records" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Rekords" +msgstr[1] "Rekords" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in gebruik" +msgstr[1] "in gebruik" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Ry Statistiek" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Kies Alles" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "Navraag dmv Voorbeeld" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Voeg 'n nuwe veld by" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Hernoem tabel na" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Kies Tabelle" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Voeg 'n nuwe gebruiker by" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-stelling" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sa" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Voortgebring deur" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Voeg By/Verwyder Veld Kolomme" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL resultaat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Voortgebring deur" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Slegs Data" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "Sa" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy msgid "Total Time" msgstr "totaal" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Boekmerk hierdie SQL-stelling" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiket" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -9986,10 +10189,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Boekmerk hierdie SQL-stelling" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10133,7 +10332,7 @@ msgstr "" msgid "Sort" msgstr "Sorteer" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10298,7 +10497,7 @@ msgstr "Effektief" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10462,7 +10661,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Veranderinge is gestoor" @@ -10518,7 +10717,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10592,46 +10791,46 @@ msgstr "Skep" msgid "Active options" msgstr "Aksie" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabel %s is verwyder" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Gebruik" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Skep 'n nuwe indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Gebruiker naam" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10661,7 +10860,7 @@ msgstr "Algemene verwantskap funksies" msgid "Relation deleted" msgstr "Relasie uitsig" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11080,204 +11279,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Voeg 'n nuwe veld by" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Hernoem tabel na" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Kies Tabelle" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Voeg 'n nuwe gebruiker by" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-stelling" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Ry Statistiek" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Kies Alles" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "Navraag dmv Voorbeeld" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Records" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Rekords" -msgstr[1] "Rekords" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "in gebruik" -msgstr[1] "in gebruik" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sa" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Voortgebring deur" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Voeg By/Verwyder Veld Kolomme" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12213,47 +12214,37 @@ msgstr "" msgid "Wrong data" msgstr "Geen databasisse" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Valideer SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Boekmerk hierdie SQL-stelling" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiket" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12341,6 +12332,12 @@ msgstr "Waarde" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Sa" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12487,146 +12484,146 @@ msgstr "Kies 'n Veld om te vertoon" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Geen databasisse" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Bediener weergawe" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Bediener weergawe" diff --git a/po/ar.po b/po/ar.po index 26649c3df6..5ac1d78f94 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-03-20 22:10+0200\n" "Last-Translator: mohamed amin boubaker \n" "Language-Team: Arabic %s" msgstr[5] "%s مطابقة في الجدول %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "استعراض" @@ -2448,14 +2449,14 @@ msgstr "استعراض" msgid "Delete the matches for the %s table?" msgstr "حذف التشابهات لجدول %s ؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "حذف" @@ -2517,45 +2518,34 @@ msgctxt "Last page" msgid "End" msgstr "نهاية" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "صف البداية" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "عدد الأسطر:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "النّمط" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "أفقي" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "أفقي (رؤوس ملتفة)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "عمودي" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "رؤوس كلّ %s أسطر" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "رتّب حسب الْمفتاح" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2582,68 +2572,68 @@ msgstr "رتّب حسب الْمفتاح" msgid "Options" msgstr "خيارات" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "نصوص جزئيّة" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "نصوص كاملة" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "مفتاح العلائقيّة" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "عمود عرض علائقي" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "أظهر المحتويات الثنائية" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "عرض محتويات BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "عرض البيانات الثنائية بالنظام الست عشري" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "أخفي محتويات المستعرض" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "نصّ معروف جيّداً" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "ثنائي معروف جيّداً" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "لقد تمّ حذف الصّف" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "حذف" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "ممكن أن يكون تقريبي. أنظر إلى [doc@faq3-11]الأسئلة المتكررة 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "في الإستعلام" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2652,21 +2642,21 @@ msgstr "" "لدى هذا العرض على الأقل هذا العدد من الأسطر. الرجاء مراجعة الــ " "%sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "أظهر الصفوف" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "المجموع" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "استغرق الاستعلام %01.4f ثانية" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2675,8 +2665,8 @@ msgstr "استغرق الاستعلام %01.4f ثانية" msgid "With selected:" msgstr "مع المحدد:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2687,45 +2677,45 @@ msgstr "مع المحدد:" msgid "Check All" msgstr "تحديد الكل" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "تصدير" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "إنشاء عرض" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "عمليّات على نتائج الإستعلام" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "عرض نسخة للطباعة" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "عرض للطّباعة (مع النّصوص الكاملة)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "عرض الرّسم البياني" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "إبداء بيانات نظام المعلومات الجغرافية للعيان" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "لم يمكن إيجاد الوصلة" @@ -2802,38 +2792,38 @@ msgstr "لم يتم تعريف الفهرس!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "فهارس" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "فريد" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "محزم" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "تعليق" @@ -2866,14 +2856,14 @@ msgstr "عرض" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "بناء" @@ -2886,12 +2876,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "إبحث" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "إدخال" @@ -3030,15 +3020,15 @@ msgstr[5] "%1$d صفوف أضيفت" msgid "Error while creating PDF:" msgstr "خطأ عند إنشاء ملف PDF :" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "لايستطيع حفظ الجدول الأخير" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "الجداول الأخيرة" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "لا يوجد جداول أخيرة" @@ -3277,7 +3267,7 @@ msgid "Maximum rows to plot" msgstr "أقصى عدد الصفوف للرسم" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "استعرض القيم الغريبة" @@ -3621,7 +3611,7 @@ msgstr "" msgid "Max: %s%s" msgstr "كبير: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3682,7 +3672,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "مضمن" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "جانبي" @@ -3721,49 +3711,49 @@ msgstr "إنّ ال %s الوظيفية هي مصابة بعطل معروف، أ msgid "Click to toggle" msgstr "إضغط للإختيار" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "تصفح حاسبك:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "إختر مجلد الرفع من الخادم %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "لا يمكن الوصول إلى الدليل اللذي عينته لعمل التحميل" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "لايوجد أي ملفات لرفعها" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "إفراغ" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "تنفيذ" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "طباعة" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "الإنشاء" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "آخر تحديث" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "آخر فحص" @@ -3878,58 +3868,58 @@ msgstr "إستغلال محتمل" msgid "numeric key detected" msgstr "الكشف عن مفتاح رقمي" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "إدخال" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "إختبار" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "كلا" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "لامكان" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "يسار" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "يمين" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "معطل" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "فتح" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "إغلاق" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3939,7 +3929,7 @@ msgstr "إغلاق" msgid "structure" msgstr "بناء" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3949,7 +3939,7 @@ msgstr "بناء" msgid "data" msgstr "بيانات" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3959,31 +3949,31 @@ msgstr "بيانات" msgid "structure and data" msgstr "البنية والبيانات" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "سريع - عرض خيارات أقل" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "مخصص - عرض كل الخيارات المحتملة" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "مخصص - مثل مافي الأعلى , لكن بدون الخيار سريع/مخصص" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "إدخال كامل" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "إدخال ممدد" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "كلاهما" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "لاشيء منهم" @@ -5968,8 +5958,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "اسم المستخدم" @@ -6367,7 +6357,7 @@ msgstr "قاعدة/قواعد البيانات:" msgid "Table(s):" msgstr "الجدول/الجداول:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "الأسطر:" @@ -6942,7 +6932,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "قام MySQL بإرجاع نتيجة فارغة." @@ -7066,11 +7056,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7127,7 +7117,7 @@ msgstr "إضافة حقل جديد" msgid "Add prefix" msgstr "إضافة حقل جديد" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7355,18 +7345,18 @@ msgstr[3] "" msgstr[4] "" msgstr[5] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "اسم الجدول" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7468,17 +7458,17 @@ msgid "Drop the database (DROP)" msgstr "حذف قاعدة البيانات" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "البنية فقط" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "البنية والبيانات" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "بيانات فقط" @@ -7922,7 +7912,7 @@ msgstr "ضع أسماء الحقول في السطر الأول" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -7930,7 +7920,7 @@ msgstr "المزود" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -7948,7 +7938,7 @@ msgstr "PHP إصدارة" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9139,7 +9129,7 @@ msgstr "الخواص" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "إضافي" @@ -9313,7 +9303,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "نسخة" @@ -9783,70 +9773,300 @@ msgstr "" "ما تم التعديل عليها يدويا. في هذه الحالة، عليك %s بإعادة قراءة الصلاحيات %s " "قبل أن تكمل." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "المستخدم المحدد غير موجود في جدول الصلاحيات." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "لقد أضفت مستخدم جديد." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "الثانية" +msgstr[1] "الثانية" +msgstr[2] "الثانية" +msgstr[3] "الثانية" +msgstr[4] "الثانية" +msgstr[5] "الثانية" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "الدقيقة" +msgstr[1] "الدقيقة" +msgstr[2] "الدقيقة" +msgstr[3] "الدقيقة" +msgstr[4] "الدقيقة" +msgstr[5] "الدقيقة" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "إحصائيات" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "اختر الجداول" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "نوع الاستعلام" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "إضافة حقل جديد" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "حذف الرسم البياني" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "اختر الجداول" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "اسم الجدول غير صالح" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "أضف مستخدم جديد" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "ابدأ" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "تفعيل التوضيح (highlighting)" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "حدث" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "إضافه/حذف عمود حقل" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "إستعادة القيمة الإفتراضية" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "ناتج استعلام SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "أنشئ بواسطة" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "ملفات البيانات" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "آخر" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "بدء التشغيل" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "مجموع الوقت:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "وقت" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "أغلاق" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "وقت" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "اجعل علامة مرجعية SQL-استعلام" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "علامة" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9867,10 +10087,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "اجعل علامة مرجعية SQL-استعلام" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10007,7 +10223,7 @@ msgstr "تحقق من الجداول التي تحمل عبء زائد" msgid "Sort" msgstr "ترتيب" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "لا شيء" @@ -10174,7 +10390,7 @@ msgstr "فعال" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "خطأ في الإستعلام" @@ -10340,7 +10556,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "تمت التعديلات" @@ -10398,7 +10614,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "الصينية التقليدية" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10474,47 +10690,47 @@ msgstr "تكوين" msgid "Active options" msgstr "خيارات الجدول" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "صفحات" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "استورد الملفات" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "تصميم فهرسه جديده" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "اسم المستخدم" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10542,7 +10758,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10967,221 +11183,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "إضافة حقل جديد" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "حذف الرسم البياني" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "اختر الجداول" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "اسم الجدول غير صالح" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "أضف مستخدم جديد" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "إحصائيات" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "اختر الجداول" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "نوع الاستعلام" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "الثانية" -msgstr[1] "الثانية" -msgstr[2] "الثانية" -msgstr[3] "الثانية" -msgstr[4] "الثانية" -msgstr[5] "الثانية" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "الدقيقة" -msgstr[1] "الدقيقة" -msgstr[2] "الدقيقة" -msgstr[3] "الدقيقة" -msgstr[4] "الدقيقة" -msgstr[5] "الدقيقة" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "ابدأ" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "تفعيل التوضيح (highlighting)" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "حدث" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "إضافه/حذف عمود حقل" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "إستعادة القيمة الإفتراضية" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12123,49 +12124,39 @@ msgstr "" msgid "Wrong data" msgstr "لايوجد بيانات" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "تم إنشاء العلامة المرجعية %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "التحقق من استعلام SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "اجعل علامة مرجعية SQL-استعلام" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "علامة" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12258,6 +12249,12 @@ msgstr "القيمة" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "صف البداية" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12408,151 +12405,151 @@ msgstr "اختر الحقل لإظهاره" msgid "No column selected." msgstr "لايوجد صفوف مختارة" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "تتبع التقرير للجدول %s" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "تم إنشاء الإصدار %s , التتبع نشط لـ %s.%s" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "التتبع نشط." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "التتبع نشط." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "تم تنفيذ جمل SQL." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "يسمح بإضافة واستبدال البيانات." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "لايوجد بيانات" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "تاريخ" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "تنفيذ SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "تصدير كـ %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "عرض الإصدارات" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "تعطيل التتبع لـ %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "تعطيل الآن" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "تنشيط التتبع لـ %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "تنشيط الآن" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "انشئ إصدار %s لـ %s.s%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "تتبع تقارير تعريف البيانات:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "تتبع تقارير التلاعب بالبيانات:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "إنشاء إصدار" @@ -13745,6 +13742,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Headers every %s rows" +#~ msgstr "رؤوس كلّ %s أسطر" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/az.po b/po/az.po index ccba837799..94cefb9048 100644 --- a/po/az.po +++ b/po/az.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:14+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Azerbaijani %s cedvelinde)" msgstr[1] "%s uyğunluq tapıldı (%s cedvelinde)" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "İçindekiler" @@ -2615,14 +2616,14 @@ msgstr "İçindekiler" msgid "Delete the matches for the %s table?" msgstr "Sxemi çıxarılan cedvel" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Sil" @@ -2700,47 +2701,36 @@ msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Şen" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Sehife başına düşen setir sayı" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Baz Ert" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "üfüqi" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "üfüqi (tekrarlanan başlıqlar)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "şaquli" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2768,98 +2758,98 @@ msgstr "" msgid "Options" msgstr "Emeliyyatlar" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Qismi Metnler" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tam Metnler (Full Text)" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Setir silindi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Söndür" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Gösterilen setirler" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "cemi" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "sorğu %01.4f saniyede icra edildi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2868,8 +2858,8 @@ msgstr "sorğu %01.4f saniyede icra edildi" msgid "With selected:" msgstr "Seçilenleri:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2880,48 +2870,48 @@ msgstr "Seçilenleri:" msgid "Check All" msgstr "Hamısını Seç" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Server versiyası" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Çap görüntüsü" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF sxemini göster" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link tapılmadı" @@ -2998,39 +2988,39 @@ msgstr "İndeks te'yin edilmedi!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksler" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 #, fuzzy msgid "Collation" msgstr "Quruluş" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Qısa İzahatlar" @@ -3064,14 +3054,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Quruluş" @@ -3084,12 +3074,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Axtarış" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Elave et" @@ -3223,16 +3213,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "Allows reading data." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Cedvel yoxdur" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3483,7 +3473,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3835,7 +3825,7 @@ msgstr "" msgid "Max: %s%s" msgstr "En çox: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3898,7 +3888,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motorlar" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3939,50 +3929,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-server upload direktoriyası" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Upload işleri üçün te'yin etdiyiniz direktoriya tapılmadı" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Çap et" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Quruluş" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "En son yenilenme" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "En son yoxlama" @@ -4105,60 +4095,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Sonrakı" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Söndürülüb" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4169,7 +4159,7 @@ msgstr "Unclosed quote" msgid "structure" msgstr "Quruluş" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4179,7 +4169,7 @@ msgstr "Quruluş" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4191,35 +4181,35 @@ msgstr "" msgid "structure and data" msgstr "Quruluş ve me'lumat" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Tam girişli" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Genişletilmiş girişli" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6276,8 +6266,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "İstifadeçi Adı:" @@ -6693,7 +6683,7 @@ msgstr "Me'lumat Bazaları" msgid "Table(s):" msgstr "Cedveller" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7285,7 +7275,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 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)." @@ -7408,11 +7398,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7469,7 +7459,7 @@ msgstr "Yeni sahe elave et" msgid "Add prefix" msgstr "Yeni sahe elave et" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7698,18 +7688,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Cedvel sırasına buna göre yeniden qur" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7814,17 +7804,17 @@ msgid "Drop the database (DROP)" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Sadece quruluş" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Quruluş ve me'lumat" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Sadece me'lumat" @@ -8277,7 +8267,7 @@ msgstr "Sahe adlarını birinci setre yerleşdir" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8285,7 +8275,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8303,7 +8293,7 @@ msgstr "PHP Versiyası" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9465,7 +9455,7 @@ msgstr "Xüsusiyyetler" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Elave Xüs." @@ -9641,7 +9631,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "PHP Versiyası" @@ -10117,64 +10107,278 @@ msgstr "" "içerisindekiler webserver-in istifade etdiklerinden ferqli ola biler. Bu " "halda, davam etmeden evvel, selahiyyetleri %syeniden yüklemelisiniz%s." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Yeni istifadeçi elave etdiniz." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "saniyede" +msgstr[1] "saniyede" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "istifadede" +msgstr[1] "istifadede" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Sıra Statistikası" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Hamısını Seç" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Sorğu tipi" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Yeni sahe elave et" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Cedveli yeniden adlandır" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Select Tables" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Yeni İstifadeçi elave Et" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL sorğusu" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Şen" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Qurucu" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Sahe Sütunlarını Elave Et/Sil" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL result" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Qurucu" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Sadece me'lumat" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Cemi" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Müddet" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Müddet" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bu SQL sorğusunu bookmark-la" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiket" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10195,10 +10399,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Bu SQL sorğusunu bookmark-la" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10330,7 +10530,7 @@ msgstr "" msgid "Sort" msgstr "Sırala" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10499,7 +10699,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10667,7 +10867,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10725,7 +10925,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Enenevi Çin Dili" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10799,48 +10999,48 @@ msgstr "Qur" msgid "Active options" msgstr "Cedvel başlığı" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "%s cedveli leğv edildi" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Miqdar" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Faylları import et" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yeni indeks qur" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İstifadeçi adı" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10870,7 +11070,7 @@ msgstr "Ümumi elaqe variantları" msgid "Relation deleted" msgstr "Relation view" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11294,205 +11494,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Yeni sahe elave et" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Cedveli yeniden adlandır" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Select Tables" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Yeni İstifadeçi elave Et" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL sorğusu" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Sıra Statistikası" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Hamısını Seç" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Sorğu tipi" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "saniyede" -msgstr[1] "saniyede" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "istifadede" -msgstr[1] "istifadede" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Şen" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Qurucu" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Sahe Sütunlarını Elave Et/Sil" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12432,47 +12433,37 @@ msgstr "" msgid "Wrong data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL Tesdiqle" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bu SQL sorğusunu bookmark-la" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiket" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12565,6 +12556,12 @@ msgstr "Deyer" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Şen" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12714,148 +12711,148 @@ msgstr "Gösterilecek Saheni Seç" msgid "No column selected." msgstr "Heç bir baza seçilmemişdir." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza seçilmemişdir ve ya mövcud deyildir." -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Me'lumat" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server versiyası" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Server versiyası" diff --git a/po/be.po b/po/be.po index 6b755bceff..c2a448a6b2 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian %s" msgstr[1] "%s супадзеньняў у табліцы %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Прагляд" @@ -2696,14 +2697,14 @@ msgstr "Прагляд" msgid "Delete the matches for the %s table?" msgstr "Дамп дадзеных табліцы" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Выдаліць" @@ -2782,48 +2783,36 @@ msgctxt "Last page" msgid "End" msgstr "Апошняя старонка" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Суб" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Колькасьць палёў" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Пан" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "гарызантальна" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "гарызантальна (павернутыя загалоўкі)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вэртыкальна" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Выканаць запыт з закладак" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Сартаваць па ключы" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2850,76 +2839,76 @@ msgstr "Сартаваць па ключы" msgid "Options" msgstr "Налады" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Частковыя тэксты" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Поўныя тэксты" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Ключ сувязі" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Адлюстраванае поле сувязі" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Пераўтварэньне MIME-тыпу браўзэрам" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Радок быў выдалены" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Спыніць" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Значэньне можа быць прыблізным. Гл. [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "па запыту" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2928,21 +2917,21 @@ msgstr "" "Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да " "%sдакумэнтацыі%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Паказаныя запісы" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "усяго" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Запыт выконваўся %01.4f сэк" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2951,8 +2940,8 @@ msgstr "Запыт выконваўся %01.4f сэк" msgid "With selected:" msgstr "З адзначанымі:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2963,48 +2952,48 @@ msgstr "З адзначанымі:" msgid "Check All" msgstr "Адзначыць усё" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспарт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Дзеяньні з вынікамі запытаў" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Вэрсія для друку" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Вэрсія для друку (з усім тэкстам)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Паказаць PDF-схему" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Сувязь ня знойдзеная" @@ -3087,38 +3076,38 @@ msgstr "Індэкс ня вызначаны!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Індэксы" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Унікальнае" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Сьціснутая" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Колькасьць элемэнтаў" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Супастаўленьне" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Камэнтар" @@ -3153,14 +3142,14 @@ msgstr "Выгляд" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3173,12 +3162,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Пошук" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Уставіць" @@ -3312,18 +3301,18 @@ msgstr[1] "Устаўлена радкоў: %1$d." msgid "Error while creating PDF:" msgstr "Дазваляе чытаць дадзеныя." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Няма табліц" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Праверыць табліцу" @@ -3578,7 +3567,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Праглядзець зьнешнія значэньні" @@ -3933,7 +3922,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максымальны памер: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3996,7 +3985,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Машыны" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Прафіляваньне" @@ -4038,50 +4027,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "тэчка вэб-сэрвэра для загрузкі файлаў" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Немагчыма адкрыць пазначаную вамі тэчку для загрузкі файлаў" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Ачысьціць" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Друк" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Створаная" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Апошняе абнаўленьне" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Апошняя праверка" @@ -4210,60 +4199,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Уставіць" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Наступная старонка" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Адключана" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Незакрытае двукосьсе" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4274,7 +4263,7 @@ msgstr "Незакрытае двукосьсе" msgid "structure" msgstr "Структура" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4284,7 +4273,7 @@ msgstr "Структура" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4296,35 +4285,35 @@ msgstr "" msgid "structure and data" msgstr "Структуру і дадзеныя" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Поўная ўстаўка" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Пашыраныя ўстаўкі" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6418,8 +6407,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Імя карыстальніка:" @@ -6847,7 +6836,7 @@ msgstr "Базы дадзеных" msgid "Table(s):" msgstr "Табліц" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7509,7 +7498,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)." @@ -7636,11 +7625,11 @@ msgstr "" "Выкарыстоўвайце клявішу TAB для перамяшчэньня ад значэньня да значэньня або " "CTRL+стрэлкі для перамяшчэньня ў любое іншае месца" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "У выглядзе SQL-запыту" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID устаўленага радку: %1$d" @@ -7697,7 +7686,7 @@ msgstr "Дадаць новае поле" msgid "Add prefix" msgstr "Дадаць новае поле" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7922,18 +7911,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "імя табліцы" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8040,17 +8029,17 @@ msgid "Drop the database (DROP)" msgstr "Базы дадзеных адсутнічаюць" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Толькі структуру" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структуру і дадзеныя" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Толькі дадзеныя" @@ -8511,7 +8500,7 @@ msgstr "Пазначыць назвы палёў у першым радку" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8519,7 +8508,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8537,7 +8526,7 @@ msgstr "Вэрсія PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9767,7 +9756,7 @@ msgstr "Атрыбуты" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Дадаткова" @@ -9942,7 +9931,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Пэрсыдзкая" @@ -10427,65 +10416,282 @@ msgstr "" "якія выкарыстоўвае сэрвэр, калі яны былі зьмененыя ўручную. У гэтым выпадку " "вам трэба %sперазагрузіць прывілеі%s да таго, як вы працягнеце." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Вылучаны карыстальнік ня знойдзены ў табліцы прывілеяў." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Быў дададзены новы карыстальнік." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у сэкунду" +msgstr[1] "у сэкунду" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "выкарыстоўваецца" +msgstr[1] "выкарыстоўваецца" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Статыстыка радку" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Выбраць усё" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Тып запыту" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Дадаць новае поле" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Перайменаваць базу дадзеных у" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Выберыце табліцу(ы)" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Некарэктнае імя табліцы" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Дадаць новага карыстальніка" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-запыт" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Суб" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Абнавіць" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Дадаць/выдаліць калёнку крытэру" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-вынік" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Створаны" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Памер павелічэньня файлаў з дадзенымі" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Стан" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Агулам" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Час" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Час" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Дадаць гэты SQL-запыт у закладкі" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Метка" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10507,10 +10713,6 @@ msgstr "Каляндар" msgid "Bookmark this SQL query:" msgstr "Дадаць гэты SQL-запыт у закладкі" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замяніць існую закладку з такім жа імем" @@ -10657,7 +10859,7 @@ msgstr "Адзначыць тыя, што патрабуюць аптыміза msgid "Sort" msgstr "Парадак" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10829,7 +11031,7 @@ msgstr "Эфэктыўнасьць" msgid "Table %1$s has been altered successfully" msgstr "Табліца %1$s была пасьпяхова зьмененая" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -11003,7 +11205,7 @@ msgstr "Памылка ў ZIP-архіве:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Мадыфікацыі былі захаваныя" @@ -11062,7 +11264,7 @@ msgid "Toggle relation lines" msgstr "" "Каб выбраць сувязь, націсьніце на кропцы злучэньня, як паказана на выяве:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Імпартаваць/Экспартаваць каардынаты табліц ў PDF-схему" @@ -11137,52 +11339,52 @@ msgstr "Стварыць" msgid "Active options" msgstr "Опцыі табліцы" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Табліца %1$s створаная." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "старонак" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Імпартаваць файлы" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Маштаб" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Стварыць новы індэкс" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Імя карыстальніка" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Маштаб" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "рэкамэндаваны" @@ -11212,7 +11414,7 @@ msgstr "Унутраная сувязь дададзеная" msgid "Relation deleted" msgstr "Сувязь выдаленая" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Памылка захаваньня каардынатаў." @@ -11641,208 +11843,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Дадаць новае поле" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Перайменаваць базу дадзеных у" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Выберыце табліцу(ы)" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Некарэктнае імя табліцы" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Дадаць новага карыстальніка" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-запыт" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Статыстыка радку" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Выбраць усё" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Тып запыту" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "у сэкунду" -msgstr[1] "у сэкунду" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "выкарыстоўваецца" -msgstr[1] "выкарыстоўваецца" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Суб" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Абнавіць" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Дадаць/выдаліць калёнку крытэру" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12921,49 +12921,39 @@ msgstr "" msgid "Wrong data" msgstr "Базы дадзеных адсутнічаюць" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Закладка %s створаная" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "У выглядзе PHP-коду" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Праверыць SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Праблемы з індэксамі для табліцы `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Дадаць гэты SQL-запыт у закладкі" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Метка" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13058,6 +13048,12 @@ msgstr "Значэньне" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Суб" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13210,148 +13206,148 @@ msgstr "Выберыце поле для адлюстраваньня" msgid "No column selected." msgstr "Ніводны радок ня выбраны" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дазваляе ўстаўляць і замяняць дадзеныя." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базы дадзеных адсутнічаюць" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Дадзеныя" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Тып экспарту" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Стварыць сувязь" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Стварыць сувязь" @@ -14589,6 +14585,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "максымум адначасовых злучэньняў" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Выканаць запыт з закладак" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/be@latin.po b/po/be@latin.po index 331e0a15a5..3cc391bce8 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-12-13 13:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) %s:" msgstr "tečka web-servera dla zahruzki fajłaŭ" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Ačyścić" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Druk" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Stvoranaja" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Apošniaje abnaŭleńnie" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Apošniaja pravierka" @@ -4227,60 +4216,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ustavić" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Nastupnaja staronka" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Adklučana" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Niezakrytaje dvukośsie" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4290,7 +4279,7 @@ msgstr "Niezakrytaje dvukośsie" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4300,7 +4289,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4312,35 +4301,35 @@ msgstr "" msgid "structure and data" msgstr "Strukturu i dadzienyja" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Poŭnaja ŭstaŭka" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Pašyranyja ŭstaŭki" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6401,8 +6390,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6834,7 +6823,7 @@ msgstr "Bazy dadzienych" msgid "Table(s):" msgstr "Tablic" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7503,7 +7492,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)." @@ -7630,11 +7619,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "U vyhladzie SQL-zapytu" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID ustaŭlenaha radku: %1$d" @@ -7691,7 +7680,7 @@ msgstr "Dadać novaje pole" msgid "Add prefix" msgstr "Dadać novaje pole" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7916,18 +7905,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "imia tablicy" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8035,17 +8024,17 @@ msgid "Drop the database (DROP)" msgstr "Kapijavać bazu dadzienych u" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tolki strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strukturu i dadzienyja" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tolki dadzienyja" @@ -8509,7 +8498,7 @@ msgstr "Paznačyć nazvy paloŭ u pieršym radku" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8517,7 +8506,7 @@ msgstr "Chost" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8535,7 +8524,7 @@ msgstr "Versija PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9769,7 +9758,7 @@ msgstr "Atrybuty" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dadatkova" @@ -9944,7 +9933,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -10430,66 +10419,284 @@ msgstr "" "jakija vykarystoŭvaje server, kali jany byli źmienienyja ŭručnuju. U hetym " "vypadku vam treba %spierazahruzić pryvilei%s da taho, jak vy praciahniecie." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Vyłučany karystalnik nia znojdzieny ŭ tablicy pryvilejaŭ." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Byŭ dadadzieny novy karystalnik." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundu" +msgstr[1] "u sekundu" +msgstr[2] "u sekundu" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "vykarystoŭvajecca" +msgstr[1] "vykarystoŭvajecca" +msgstr[2] "vykarystoŭvajecca" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "Statystyka radku" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Vybrać usio" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Typ zapytu" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Dadać novaje pole" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Pierajmienavać bazu dadzienych u" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Vybierycie tablicu(y)" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Niekarektnaje imia tablicy" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "Dadać novaha karystalnika" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Abnavić" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dadać/vydalić kalonku kryteru" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-vynik" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Stvorany" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Pamier pavieličeńnia fajłaŭ z dadzienymi" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Sub" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ahułam" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Čas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Čas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Dadać hety SQL-zapyt u zakładki" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Mietka" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10510,10 +10717,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Dadać hety SQL-zapyt u zakładki" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamianić isnuju zakładku z takim ža imiem" @@ -10660,7 +10863,7 @@ msgstr "Adznačyć tyja, što patrabujuć aptymizacyi" msgid "Sort" msgstr "Paradak" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10832,7 +11035,7 @@ msgstr "Efektyŭnaść" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s była paśpiachova źmienienaja" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -11006,7 +11209,7 @@ msgstr "Pamyłka ŭ ZIP-archivie:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Madyfikacyi byli zachavanyja" @@ -11065,7 +11268,7 @@ msgid "Toggle relation lines" msgstr "" "Kab vybrać suviaź, naciśnicie na kropcy złučeńnia, jak pakazana na vyjavie:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Impartavać/Ekspartavać kaardynaty tablic ŭ PDF-schiemu" @@ -11141,51 +11344,51 @@ msgstr "Stvaryć" msgid "Active options" msgstr "Opcyi tablicy" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "staronak" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Impartavać fajły" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Maštab" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Stvaryć novy indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Imia karystalnika" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Maštab" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "rekamendavany" @@ -11215,7 +11418,7 @@ msgstr "Unutranaja suviaź dadadzienaja" msgid "Relation deleted" msgstr "Suviaź vydalenaja" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Pamyłka zachavańnia kaardynataŭ." @@ -11641,209 +11844,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Dadać novaje pole" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Pierajmienavać bazu dadzienych u" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Vybierycie tablicu(y)" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Niekarektnaje imia tablicy" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "Dadać novaha karystalnika" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "Statystyka radku" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Vybrać usio" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Typ zapytu" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "u sekundu" -msgstr[1] "u sekundu" -msgstr[2] "u sekundu" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "vykarystoŭvajecca" -msgstr[1] "vykarystoŭvajecca" -msgstr[2] "vykarystoŭvajecca" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Abnavić" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dadać/vydalić kalonku kryteru" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12916,49 +12916,39 @@ msgstr "" msgid "Wrong data" msgstr "Bazy dadzienych adsutničajuć" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Zakładka %s stvoranaja" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "U vyhladzie PHP-kodu" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pravieryć SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Prablemy z indeksami dla tablicy `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Dadać hety SQL-zapyt u zakładki" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Mietka" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13052,6 +13042,12 @@ msgstr "Značeńnie" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Showing rows" +msgid "Start row:" +msgstr "Pakazanyja zapisy" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13204,148 +13200,148 @@ msgstr "Vybierycie pole dla adlustravańnia" msgid "No column selected." msgstr "Nivodny radok nia vybrany" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dazvalaje ŭstaŭlać i zamianiać dadzienyja." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Bazy dadzienych adsutničajuć" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -14593,6 +14589,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maksymum adnačasovych złučeńniaŭ" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Vykanać zapyt z zakładak" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/bg.po b/po/bg.po index 2c7ef23720..164a269099 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-07 23:46+0200\n" "Last-Translator: Pl P \n" "Language-Team: Bulgarian %2$s" msgstr[1] "%1$s съвпадения в таблица %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Прелистване" @@ -2482,14 +2483,14 @@ msgstr "Прелистване" msgid "Delete the matches for the %s table?" msgstr "Изтриване на съвпаденията от таблицата %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Изтриване" @@ -2551,45 +2552,34 @@ msgctxt "Last page" msgid "End" msgstr "Последна" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Начален ред" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Брой редове:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Режим" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "хоризонтален" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "хоризонтален (обърнати хедъри)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вертикален" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Заглавки всеки %s реда" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Сортиране по ключ" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,89 +2606,89 @@ msgstr "Сортиране по ключ" msgid "Options" msgstr "Настройки" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Частични текстове" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Пълни текстове" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Показване на двоичните данни" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Показване на BLOB-данните" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Показване на двоичните данни в шестнадесетичен вид" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Без трансформация от браузъра" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Добре познат текст" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Добре позната двоична стойност" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Редът беше изтрит" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Спиране" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Може да има приблизителна стойност. Виж [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "в зявката" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Показване на записи" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "общо" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Заявката отне %01.4f секунди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2707,8 +2697,8 @@ msgstr "Заявката отне %01.4f секунди" msgid "With selected:" msgstr "Когато има отметка:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2719,45 +2709,45 @@ msgstr "Когато има отметка:" msgid "Check All" msgstr "Маркиране всички" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Създаване на изглед" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Операции с резултата от заявката" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Преглед за печат" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Преглед за печат (пълни текстове)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Диаграма" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Визуализиране на GIS данни" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Връзките не са намерени" @@ -2834,38 +2824,38 @@ msgstr "Не е избран индекс!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индекси" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Уникално" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Опаковани" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Колация" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Коментар" @@ -2900,14 +2890,14 @@ msgstr "Изглед" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -2920,12 +2910,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Търсене" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Вмъкване" @@ -3052,15 +3042,15 @@ msgstr[1] "%1$d реда добавени." msgid "Error while creating PDF:" msgstr "Грешка при създаване на PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Наскоро отваряната таблице не можа да бъде записана" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Отваряни таблици" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Няма наскоро отваряни таблици" @@ -3299,7 +3289,7 @@ msgid "Maximum rows to plot" msgstr "Максимален брой редове за изчертаване" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Разглеждане на външни стойности" @@ -3647,7 +3637,7 @@ msgstr "Изброяване, избор от списък на определе msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3708,7 +3698,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "На място" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профилиране" @@ -3747,49 +3737,49 @@ msgstr "Функционалността %s се влияе от известе msgid "Click to toggle" msgstr "Щракване за превключване" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Разглеждане на компютъра:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Избор от директорията за качване %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Папката, която сте указали за качване е недостъпна" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Няма файлве за качване" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Изчистване" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Изпълнение" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Печат" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Дата на създаване" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Последно обновление" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Последна проверка" @@ -3908,58 +3898,58 @@ msgstr "възможен пробив в сигурността" msgid "numeric key detected" msgstr "цифров ключ открит" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Вмъкни" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Тест" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "И двете" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Никъде" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Ляво" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Дясно" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Забрано" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Отворен" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Затворен" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3969,7 +3959,7 @@ msgstr "Затворен" msgid "structure" msgstr "структура" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3979,7 +3969,7 @@ msgstr "структура" msgid "data" msgstr "данни" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3989,31 +3979,31 @@ msgstr "данни" msgid "structure and data" msgstr "структура и данни" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Бързо - минимум настройки" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Потребителско - всички настройки" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Потребителско - като горното, но без избор бързо/потребителско" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "пълни INSERT-и" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "разширени INSERT-и" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "и двете по-горе" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "никое от горните" @@ -6077,8 +6067,8 @@ msgstr "" "Ако имате отделно потребителско име, въведете го тук (по подразбиране е " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Потребителско име" @@ -6489,7 +6479,7 @@ msgstr "БД:" msgid "Table(s):" msgstr "Таблица(и):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Редове:" @@ -7050,7 +7040,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL върна празен резултат (т.е. нула редове)." @@ -7170,11 +7160,11 @@ msgstr "" "Използвайте клавиша TAB, за да премествате крурсора от стойност на стойност " "или CTRL+стрелка, за да премествате курсора в съответната посока" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7225,7 +7215,7 @@ msgstr "Добавяне на представка на таблица" msgid "Add prefix" msgstr "Добавяне на представка" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Наистина ли искате да изпълните следната заявка?" @@ -7447,18 +7437,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "филтър по таблица" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7574,17 +7564,17 @@ msgid "Drop the database (DROP)" msgstr "Изтриване на БД (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Само структурата" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структурата и данните" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Само данните" @@ -8006,7 +7996,7 @@ msgstr "Поставяне имената на полетата в първи р #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8014,7 +8004,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8032,7 +8022,7 @@ msgstr "Версия на PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9136,7 +9126,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Допълнително" @@ -9301,7 +9291,7 @@ msgid "Library" msgstr "Библиотека" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версия" @@ -9774,71 +9764,273 @@ msgstr "" "правата които използва сървъра ако към него са направени промени на ръка. В " "този случай, трябва да %sпрезаредите правата%s преди да продължите." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Избраният потребител не беше открит в таблицата с права." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Вие добавихте нов потребител." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d секунда" +msgstr[1] "%d секунди" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d минута" +msgstr[1] "%d минути" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Статистика на дневника" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Анализатор заявки" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Инструкции на наблюдателя" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Наблюдателят на phpMyAdmin може да ви помогне при оптимизиране на " +"конфигурацията на сървъра и да проследи времеемките заявки. За последното ще " +"трябва да настроите log_output на 'TABLE' и да разрешите slow_query_log или " +"general_log. Отбележете обаче, че general_log генерира много данни и " +"натоварването на сървъра се увеличава с до 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Използване наблюдател:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Добавяне диаграма" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Променливи(а) на състоянието" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Избор на серии:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "или въведете променлива:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Прилагане на разделител" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Включване на Наблюдателя" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Включване синтактичното оцветяване" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Скорост на опресняване" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Стойност по подразбиране" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL резултат" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Генерирано от" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Файлове с данни" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Друго" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Начало" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Общо време:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Затваряне" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Отбелязване SQL заявката" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Етикет" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Всеки потребител да има достъп до тази белязка" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9859,10 +10051,6 @@ msgstr "Изчистване" msgid "Bookmark this SQL query:" msgstr "Отбелязване SQL заявката" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Всеки потребител да има достъп до тази белязка" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замяна белязката със същото име" @@ -10003,7 +10191,7 @@ msgstr "Маркиране на таблиците със загубено мя msgid "Sort" msgstr "Сортиране" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Няма" @@ -10159,7 +10347,7 @@ msgstr "Ефективни" msgid "Table %1$s has been altered successfully" msgstr "Таблицата %1$s беше променена" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Грешка в заявката" @@ -10315,7 +10503,7 @@ msgstr "Грешка в ZIP архива:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Промените бяха запазени" @@ -10371,7 +10559,7 @@ msgstr "Превключване на малки/големи" msgid "Toggle relation lines" msgstr "Превключване на редовете с релации" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/експорт на координатите за PDF схема" @@ -10431,43 +10619,43 @@ msgstr "Агрегиране" msgid "Active options" msgstr "Активни опции" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Страница беше създадена" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Неуспешно създаване на страница" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Страница" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Импорт от избрания файл" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Експорт към избраната страница" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "създаване на страница и експорт към нея" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Име: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Експорт/импорт в мащаб" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "препоръчително" @@ -10497,7 +10685,7 @@ msgstr "Добавена е вътрешна релация" msgid "Relation deleted" msgstr "Релацията изтрита" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Грешка при запазване на координатите в Строител." @@ -10922,193 +11110,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Инструкции на наблюдателя" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Наблюдателят на phpMyAdmin може да ви помогне при оптимизиране на " -"конфигурацията на сървъра и да проследи времеемките заявки. За последното ще " -"трябва да настроите log_output на 'TABLE' и да разрешите slow_query_log или " -"general_log. Отбележете обаче, че general_log генерира много данни и " -"натоварването на сървъра се увеличава с до 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Използване наблюдател:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Добавяне диаграма" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Променливи(а) на състоянието" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Избор на серии:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "или въведете променлива:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Прилагане на разделител" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Статистика на дневника" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Анализатор заявки" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d секунда" -msgstr[1] "%d секунди" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d минута" -msgstr[1] "%d минути" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Включване на Наблюдателя" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Включване синтактичното оцветяване" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Скорост на опресняване" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Стойност по подразбиране" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12043,26 +12044,26 @@ msgstr "Ключът трябва да съдържа букви, цифри [em msgid "Wrong data" msgstr "Грешни данни" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Белязка %s беше създадена" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Показване като PHP-код" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Валидиран SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12075,21 +12076,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем с индексите на таблица `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Отбелязване SQL заявката" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Етикет" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12169,6 +12160,12 @@ msgstr "Стойности на X" msgid "Y-Axis label:" msgstr "Етикет на оста Y:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Начален ред" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12313,143 +12310,143 @@ msgstr "Изберете колона за показване" msgid "No column selected." msgstr "Няма върнати редове" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Проследяването на %1$s беше изключено във версия %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Проследяването на %1$s беше включено във версия %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Няма данни" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Израз за дефиниране на данни" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Израз за манипулация на данни" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Изпълняване на SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Експорт като %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Показване на версиите" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Изключване проследяването за %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Изключване сега" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Включване проследяването за %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Включване сега" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Създаване на версия %1$s от %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Проследяване следните изрази за дефиниране на данни:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Проследяване следните изрази за манипулиране на данни:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Създаване на версия" @@ -13610,6 +13607,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert e 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Заглавки всеки %s реда" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/bn.po b/po/bn.po index 3acaf48f21..ba7c21a7d7 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-30 12:59+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali msgstr[1] "%s ভিতরের টেবিলগুলি মানানসই %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "ব্রাউজ করুন" @@ -2590,14 +2591,14 @@ msgstr "ব্রাউজ করুন" msgid "Delete the matches for the %s table?" msgstr "%s মানানসই টেবিলটি মুছে দেবেন?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "মুছে ফেল" @@ -2670,48 +2671,36 @@ msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "শনিবার" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Number of fields" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "সোমবার" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "আনুভূমিক" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "লম্ব" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Execute bookmarked query" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2739,98 +2728,98 @@ msgstr "Sort by key" msgid "Options" msgstr "Operations" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relational schema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "সারিটি মুছে ফেলা হয়েছে" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "হয়ত আনুমানিক। [doc@faq3-11]FAQ ৩.১১[/doc] দেখ।" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "এই ভিউ এ অন্তত এই সংখ্যক সারি রয়েছে। %sdocumentation%s পড়ুন." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "মোট" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2839,8 +2828,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2851,48 +2840,48 @@ msgstr "" msgid "Check All" msgstr "সব পরীক্ষা করুন" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Server version" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Print view" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Display PDF schema" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "লিংক পাওয়া যায়নি" @@ -2968,38 +2957,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "ইন্ডেস্ক সমূহ" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "একত্রীকরণ" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "মন্তব্যসমূহ" @@ -3033,14 +3022,14 @@ msgstr "View" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structure" @@ -3053,12 +3042,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "খুঁজুন" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Insert" @@ -3192,18 +3181,18 @@ msgstr[1] "No rows selected" msgid "Error while creating PDF:" msgstr "Allows reading data." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "কোন টেবিল নাই" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "টেবিল পরীক্ষা কর" @@ -3453,7 +3442,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3807,7 +3796,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3870,7 +3859,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ইঞ্জিনসমূহ" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3909,50 +3898,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "খালি" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "প্রিন্ট কর" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creation" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "সর্বশেষ আপডেট" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Last check" @@ -4074,60 +4063,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "পরবর্তী" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "বন্ধ করা হয়েছে" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4138,7 +4127,7 @@ msgstr "Unclosed quote" msgid "structure" msgstr "Structure" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4148,7 +4137,7 @@ msgstr "Structure" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4160,35 +4149,35 @@ msgstr "" msgid "structure and data" msgstr "Structure and data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Complete inserts" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Extended inserts" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6277,8 +6266,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "ব্যাবহারকারী" @@ -6697,7 +6686,7 @@ msgstr "ডাটাবেজসমূহ Databases" msgid "Table(s):" msgstr "টেবিলসমূহ" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7307,7 +7296,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7429,12 +7418,12 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 #, fuzzy msgid "Showing SQL query" msgstr "Show Full Queries" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7489,7 +7478,7 @@ msgstr "টেবিল উপসর্গ প্রতিস্থাপন" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7713,18 +7702,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "টেবিল অর্ডার পরিবর্তন কর" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7828,17 +7817,17 @@ msgid "Drop the database (DROP)" msgstr "ডাটাবেজটি ফেলে দিন (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "শুধুই গঠনপ্রণালী" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "গঠনপ্রণালী এবং তথ্য" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "শুধু তথ্য" @@ -8299,7 +8288,7 @@ msgstr "Put fields names in the first row" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8307,7 +8296,7 @@ msgstr "হোষ্ট" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8325,7 +8314,7 @@ msgstr "PHP Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9519,7 +9508,7 @@ msgstr "Attributes" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "অতিরিক্ত" @@ -9695,7 +9684,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "পারসিয়ান" @@ -10164,69 +10153,286 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "আপনি একটি নতুন ইউজার যোগ করেছেন" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "per second" +msgstr[1] "per second" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in use" +msgstr[1] "in use" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Row Statistics" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "সব সিলেক্ট করুন" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Query type" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "%s ক্ষেত্রসমূহ যোগ কর" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "ডাটাবেজ রিনেম কর" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "টেবিল সিলেক্ট করুন" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Invalid table name" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "একটি নতুন ইউজার যোগ করুন" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL query" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "শনিবার" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Refresh" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Add/Delete Field Columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL result" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "তৈরী কর" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "ডাটা ফাইলসমূহ" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "স্থিতি উপাত্ত" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "অবস্থা" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "মোট" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "সময়" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "বন্ধ" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "সময়" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "এই SQL query টি বুকমার্ক করুন" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "লেবেল" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10248,10 +10454,6 @@ msgstr "ক্যালেন্ডার" msgid "Bookmark this SQL query:" msgstr "এই SQL query টি বুকমার্ক করুন" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন" @@ -10377,7 +10579,7 @@ msgstr "ওভারহেড সহ টেবিল পরীক্ষা ক msgid "Sort" msgstr "সাজাঁন" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10546,7 +10748,7 @@ msgstr "Effective" msgid "Table %1$s has been altered successfully" msgstr "The selected users have been deleted successfully." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10715,7 +10917,7 @@ msgstr "ZIP archive: এ ভূল আছে" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10774,7 +10976,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Traditional Chinese" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10848,52 +11050,52 @@ msgstr "তৈরী করুন" msgid "Active options" msgstr "Table options" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Table %s has been dropped" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "পাতাসমুহ" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ফাইল ইম্পোর্ট কর" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "No rows selected" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "একটি নতুন ইন্ডেস্ক তৈরী কর" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ব্যাভারকারীর নাম" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "No rows selected" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10923,7 +11125,7 @@ msgstr "Internal relations" msgid "Relation deleted" msgstr "Relation view" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11348,208 +11550,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "%s ক্ষেত্রসমূহ যোগ কর" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "ডাটাবেজ রিনেম কর" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "টেবিল সিলেক্ট করুন" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Invalid table name" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "একটি নতুন ইউজার যোগ করুন" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL query" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Row Statistics" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "সব সিলেক্ট করুন" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Query type" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "per second" -msgstr[1] "per second" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "in use" -msgstr[1] "in use" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "শনিবার" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Refresh" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Add/Delete Field Columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12500,49 +12500,39 @@ msgstr "" msgid "Wrong data" msgstr "কোন ডাটাবেজ নাই" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "বুকমার্ক %s তৈরী করা হয়েছে" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "এই SQL query টি বুকমার্ক করুন" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "লেবেল" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12635,6 +12625,12 @@ msgstr "মান" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "শনিবার" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12779,151 +12775,151 @@ msgstr "প্রদর্শনের জন্য ক্ষেত্র পছ msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ট্র্যাকিং সক্রিয়।" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ট্র্যাকিং সক্রিয়।" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "কোন ডাটাবেজ নাই" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "ডাটা" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Export type" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "এই টেবিলের জন্য ট্র্যাকিং ডাটা মুছুন" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server version" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Server version" @@ -14162,6 +14158,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Execute bookmarked query" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/br.po b/po/br.po index d1ca53ee98..f0ff8c4aa6 100644 --- a/po/br.po +++ b/po/br.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Breton %s" msgstr[1] "%s klotadenn en daolenn %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Furchal" @@ -2511,14 +2512,14 @@ msgstr "Furchal" msgid "Delete the matches for the %s table?" msgstr "Diverkañ ar c'hlotadennoù a-ziouzh an daolenn %s ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Diverkañ" @@ -2588,46 +2589,34 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Sort" -msgid "Start row:" -msgstr "Urzhiañ" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "More" msgid "Mode:" msgstr "Muioc'h" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute" -msgid "Headers every %s rows" -msgstr "Seveniñ" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2654,68 +2643,68 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Diskouez an endalc'had binarel en HEX (eizhdekvedennoù)" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2724,21 +2713,21 @@ msgstr "" "Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an " "%steulioù titouriñ%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2747,8 +2736,8 @@ msgstr "" msgid "With selected:" msgstr "Evit ar re zo diuzet :" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2759,45 +2748,45 @@ msgstr "Evit ar re zo diuzet :" msgid "Check All" msgstr "Askañ pep tra" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ezporzhiañ" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Stumm da voullañ" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2879,38 +2868,38 @@ msgstr "N'eus bet termenet meneger ebet !" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Menegerioù" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Dibar" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Gwasket" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalegezh" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Etrerummadiñ" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Evezhiadenn" @@ -2945,14 +2934,14 @@ msgstr "Gwelet" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Framm" @@ -2965,12 +2954,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Klask" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Ensoc'hañ" @@ -3097,15 +3086,15 @@ msgstr[1] "%1$d linenn ensoc'het." msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "N'eus ket bet gallet enrollañ an daolenn envez" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Taolennoù nevez" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "N'eus taolenn nevez ebet" @@ -3350,7 +3339,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3704,7 +3693,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Ment vrasañ : %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3765,7 +3754,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Enlinenn" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "O profilañ" @@ -3804,49 +3793,49 @@ msgstr "Direizhet eo an arc'hwel %s gant un draen anavezet, sellit ouzh %s" msgid "Click to toggle" msgstr "Klikañ evit gwintañ" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Furchal en hoc'h urzhiataer" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Diuzit e-mesk kavlec'h pellgargañ ar servijer web %s :" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Ar c'havlec'h treuzkas n'hall ket bezañ diraezet." -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "N'eus restr ebet da enporzhiañ" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Goullonderiñ" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Seveniñ" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Moullañ" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Krouiñ" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Hizivadenn ziwezhañ" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Gwiriadenn ziwezhañ" @@ -3969,58 +3958,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ensoc'hañ" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "War-lerc'h" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "An daou" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Neblec'h" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Kleiz" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Dehou" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Diweredekaet" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Digor" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Serr" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4030,7 +4019,7 @@ msgstr "Serr" msgid "structure" msgstr "Framm" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4040,7 +4029,7 @@ msgstr "Framm" msgid "data" msgstr "roadennoù" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4050,31 +4039,31 @@ msgstr "roadennoù" msgid "structure and data" msgstr "Framm ha roadennoù" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Prim - na ziskouez nemet nebeudik-tre a zibarzhioù da gefluniañ" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personelaet - diskouez an holl zibarzhioù kefluniañ posupl" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personelaet - evel a-us nemet hep an dibaboù prim/personelaet" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "Ensoc'hadennoù sevenet" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "Ensoc'hadennoù astennet" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "Kement dibab zo a-us" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "Dibab ebet a-zouez ar re zo a-us" @@ -6097,8 +6086,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6496,7 +6485,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -7068,7 +7057,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)." @@ -7190,11 +7179,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7245,7 +7234,7 @@ msgstr "Erlec'hiañ rakger an daolenn" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7469,18 +7458,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Invalid table name" msgid "filter databases by name" msgstr "Anv taolenn direizh" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Invalid table name" msgid "filter items by name" @@ -7580,17 +7569,17 @@ msgid "Drop the database (DROP)" msgstr "Diverkañ an diaz roadennoù (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Ar framm hepken" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Ar framm hag ar roadennoù ennañ" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Ar roadennoù hepken" @@ -8016,13 +8005,13 @@ msgstr "Diskouez anvioù ar bannoù diouzhtu el linenn gentañ" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -8040,7 +8029,7 @@ msgstr "Stummoù" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9135,7 +9124,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9298,7 +9287,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9748,68 +9737,281 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Query statistics" +msgid "Log statistics" +msgstr "Stadegoù war ar rekedoù" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +#, fuzzy +#| msgid "Pause monitor" +msgid "Using the monitor:" +msgstr "Paouez gant an evezhiañ" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "Dilemel ar grafik" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Foreign Key" +msgid "Select series:" +msgstr "Diuzit an alc'hwez estren" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Anv taolenn direizh" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add user" +msgid "Add this series" +msgstr "Ouzhpennañ un implijer" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +#| msgid "Refresh" +msgid "Refresh rate" +msgstr "Freskaat" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "Bannoù evit an takadoù skrid CHAR" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Adlakaat an talvoud dre ziouer" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "Genel" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Udb all" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Pajenn deraouiñ" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total:" msgid "Total Time" msgstr "Hollad :" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Theme" msgid "% Time" msgstr "Tem" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Serriñ" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Theme" msgid "ø Time" msgstr "Tem" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "Alc'hwez an dikedenn" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9828,10 +10030,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9957,7 +10155,7 @@ msgstr "Askañ an taolennoù gant dilerc'hioù" msgid "Sort" msgstr "Urzhiañ" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10119,7 +10317,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -10261,7 +10459,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10317,7 +10515,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10377,39 +10575,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10437,7 +10635,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10846,204 +11044,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -#, fuzzy -#| msgid "Pause monitor" -msgid "Using the monitor:" -msgstr "Paouez gant an evezhiañ" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "Dilemel ar grafik" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Foreign Key" -msgid "Select series:" -msgstr "Diuzit an alc'hwez estren" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Anv taolenn direizh" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add user" -msgid "Add this series" -msgstr "Ouzhpennañ un implijer" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Query statistics" -msgid "Log statistics" -msgstr "Stadegoù war ar rekedoù" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -#| msgid "Refresh" -msgid "Refresh rate" -msgstr "Freskaat" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "Bannoù evit an takadoù skrid CHAR" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Adlakaat an talvoud dre ziouer" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -11968,47 +11968,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Krouet eo bet ar sined %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "Alc'hwez an dikedenn" - #: tbl_chart.php:38 #, fuzzy #| msgid "Choose column to display" @@ -12097,6 +12087,12 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Sort" +msgid "Start row:" +msgstr "Urzhiañ" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12239,148 +12235,148 @@ msgstr "Dibab ar bann da ziskouez" msgid "No column selected." msgstr "N'eus bet diuzet linenn ebet" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Oberiant eo an heuliañ." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Diverkañ ar roadennoù heuliañ evit an daolenn-mañ" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Roadennoù a vank evit %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Other core settings" msgid "Create version %1$s of %2$s" msgstr "Arventennoù pouezus all" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -13581,6 +13577,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute" +#~ msgid "Headers every %s rows" +#~ msgstr "Seveniñ" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/bs.po b/po/bs.po index 8f83b8bee7..9e74e98546 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,17 +3,17 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-17 09:33+0200\n" "Last-Translator: Michal Čihař \n" -"Language-Team: Bosnian " -"\n" +"Language-Team: Bosnian \n" "Language: bs\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%" -"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" +"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.6-dev\n" #: browse_foreigners.php:51 browse_foreigners.php:75 js/messages.php:335 @@ -48,7 +48,7 @@ msgid "Search:" msgstr "Pretraživanje" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -74,24 +74,24 @@ msgstr "Pretraživanje" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kreni" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -108,7 +108,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Baza %1$s je kreirana." @@ -138,7 +138,7 @@ msgstr "Komentari tabele" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolona" @@ -161,7 +161,7 @@ msgstr "Kolona" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tip" @@ -178,7 +178,7 @@ msgstr "Tip" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -193,7 +193,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Podrazumjevano" @@ -235,9 +235,9 @@ msgstr "Komentari" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -262,9 +262,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -301,9 +301,6 @@ msgstr "Baza %1$s je kopirana u %2$s" #: db_operations.php:261 #, php-format -#| msgid "" -#| " additional features for working with linked tables have been ctivated. " -#| "To find out why click %shere%s." msgid "" "The phpMyAdmin configuration storage has been deactivated. To find out why " "click %shere%s." @@ -317,7 +314,7 @@ msgstr "phpMyAdmin konfiguracijski spremnik je isključen. %sSaznaj više%s." #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -374,7 +371,6 @@ msgstr "Morate izabrati bar jednu kolonu za prikaz" #: db_qbe.php:60 #, php-format -#| msgid "Switch to copied table" msgid "Switch to %svisual builder%s" msgstr "Pređi na %svizualni graditelj%s" @@ -387,7 +383,6 @@ msgid "Access denied" msgstr "Ulaz nije dozvoljen" #: db_structure.php:86 -#| msgid "No tables found in database." msgid "No tables found in database" msgstr "Nema pronađenih tabela u bazi" @@ -403,7 +398,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Baza podataka" @@ -411,17 +406,17 @@ msgstr "Baza podataka" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Kreirano" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -434,7 +429,7 @@ msgstr "Status" msgid "Action" msgstr "Akcija" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Prikaži" @@ -443,18 +438,18 @@ msgid "Delete tracking data for this table" msgstr "" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Odbaci" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -462,11 +457,11 @@ msgstr "" msgid "Versions" msgstr "Verzije" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Samo struktura" @@ -669,7 +664,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -691,7 +686,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -902,7 +897,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" komanda je onemogućena." @@ -912,7 +907,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1009,8 +1004,8 @@ msgstr "Globalne privilegije" msgid "Removing Selected Users" msgstr "Ukloni izabrane korisnike" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1144,13 +1139,13 @@ msgstr "bajta" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1191,7 +1186,7 @@ msgid "Traffic" msgstr "Saobraćaj" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1214,13 +1209,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "nema" @@ -1320,7 +1316,7 @@ msgstr "Opšte osobine relacija" msgid "Current settings" msgstr "Opšte osobine relacija" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Import files" msgid "Chart Title" @@ -1408,7 +1404,7 @@ msgstr "Objasni SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Vrijeme" @@ -1518,7 +1514,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1582,7 +1578,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Lokalni" @@ -1761,10 +1757,10 @@ msgstr "SQL upit" msgid "Show query box" msgstr "SQL upit" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1774,7 +1770,7 @@ msgstr "Promeni" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1866,7 +1862,7 @@ msgstr "Sadržaj" msgid "Ignore" msgstr "Ignoriši" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1884,7 +1880,7 @@ msgstr "Linije se završavaju sa" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2429,31 +2425,31 @@ msgstr "na sat" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Rastući" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2472,7 +2468,7 @@ msgstr "Kolona" msgid "Sort:" msgstr "Sortiranje" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2601,8 +2597,8 @@ msgstr[0] "%s pogodaka unutar tabele %s" msgstr[1] "%s pogodaka unutar tabele %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Pregled" @@ -2612,14 +2608,14 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Prikaz podataka tabele" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Obriši" @@ -2697,48 +2693,36 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Sub" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Broj redova po strani" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Pon" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontalnom" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikalnom" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši upamćen upit" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2766,98 +2750,98 @@ msgstr "" msgid "Options" msgstr "Operacije" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Dio teksta" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pun tekst" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relaciona shema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Tranformacije čitača" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "u upitu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2866,8 +2850,8 @@ msgstr "Upit je trajao %01.4f sekundi" msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2878,48 +2862,48 @@ msgstr "Označeno:" msgid "Check All" msgstr "Označi sve" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Za štampu" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2996,38 +2980,38 @@ msgstr "Ključ nije definisan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Ključevi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Sortiranje" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Komentari" @@ -3061,14 +3045,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -3081,12 +3065,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Pretraživanje" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Novi zapis" @@ -3219,16 +3203,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "Dozvoljava čitanje podataka." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Nema tabela" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3479,7 +3463,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pregledaj strane vrijednosti" @@ -3831,7 +3815,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3892,7 +3876,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3933,50 +3917,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direkcija za slanje web servera " -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Direkcija koju ste izabrali za slanje nije dostupna" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Štampaj" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Napravljeno" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Posljednja izmjena" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Posljednja provjera" @@ -4099,60 +4083,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Slijedeći" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Onemogućeno" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4163,7 +4147,7 @@ msgstr "Navodnik nije zatvoren" msgid "structure" msgstr "Struktura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4173,7 +4157,7 @@ msgstr "Struktura" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4185,35 +4169,35 @@ msgstr "" msgid "structure and data" msgstr "Struktura i podatci" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Kompletan INSERT (sa imenima polja)" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Prošireni INSERT" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6263,8 +6247,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Korisničko ime:" @@ -6680,7 +6664,7 @@ msgstr "Baze" msgid "Table(s):" msgstr "Tabele" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7271,7 +7255,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -7394,11 +7378,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7455,7 +7439,7 @@ msgstr "Dodaj novo polje" msgid "Add prefix" msgstr "Dodaj novo polje" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7684,18 +7668,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Promijeni redoslijed u tabeli" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7800,17 +7784,17 @@ msgid "Drop the database (DROP)" msgstr "Baza ne postoji" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura i podatci" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podaci" @@ -8263,7 +8247,7 @@ msgstr "Stavi imena polja u prvi red" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8271,7 +8255,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8289,7 +8273,7 @@ msgstr "verzija PHP-a" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9453,7 +9437,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9629,7 +9613,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "verzija PHP-a" @@ -10108,64 +10092,278 @@ msgstr "" "server koristi ako su izvršene ručne izmjene. U tom slučaju %sponovo " "učitajte privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "u sekundi" +msgstr[1] "u sekundi" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "se koristi" +msgstr[1] "se koristi" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistike reda" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Izaberi sve" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vrsta upita" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Dodaj novo polje" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Promjeni ime tabele u " + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Izaberi tabele" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Dodaj novog korisnika" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL upit" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sub" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Generirao" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dodaj/obriši kolonu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generirao" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Samo podaci" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ukupno" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vrijeme" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Obilježi SQL-upit" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Naziv" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10186,10 +10384,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Obilježi SQL-upit" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10332,7 +10526,7 @@ msgstr "" msgid "Sort" msgstr "Sortiranje" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10500,7 +10694,7 @@ msgstr "Efektivne" msgid "Table %1$s has been altered successfully" msgstr "Izabrani korisnici su uspješno obrisani." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10668,7 +10862,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Izmjene su sačuvane" @@ -10726,7 +10920,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Tradicionalni kineski" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10801,48 +10995,48 @@ msgstr "Napravi" msgid "Active options" msgstr "Opcije tabele" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabela %s je odbačena" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Zauzeće" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvoz fajlova" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Napravi novi ključ" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Ime korisnika" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10872,7 +11066,7 @@ msgstr "Opšte osobine relacija" msgid "Relation deleted" msgstr "Relacioni pogled" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11295,205 +11489,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Dodaj novo polje" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Promjeni ime tabele u " - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Izaberi tabele" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Dodaj novog korisnika" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL upit" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistike reda" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Izaberi sve" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vrsta upita" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "u sekundi" -msgstr[1] "u sekundi" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "se koristi" -msgstr[1] "se koristi" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sub" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Generirao" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dodaj/obriši kolonu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12433,47 +12428,37 @@ msgstr "" msgid "Wrong data" msgstr "Baza ne postoji" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjeri SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Obilježi SQL-upit" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Naziv" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12564,6 +12549,12 @@ msgstr "Vrijednost" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Sub" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12713,148 +12704,148 @@ msgstr "Izaberi polja za prikaz" msgid "No column selected." msgstr "Nije izabrana ni jedna baza." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dozvoljava umetanje i zamjenu podataka." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Baza ne postoji" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Verzija servera" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Verzija servera" @@ -14014,6 +14005,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izvrši upamćen upit" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ca.po b/po/ca.po index 0f01bfccf0..b1c2380b0d 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-30 13:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Catalan %2$s" msgstr[1] "%1$s resultats a %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Navega" @@ -2496,14 +2497,14 @@ msgstr "Navega" msgid "Delete the matches for the %s table?" msgstr "Esborrar les coincidències per a la taula %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Esborra" @@ -2565,45 +2566,34 @@ msgctxt "Last page" msgid "End" msgstr "Darrera pàgina" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Fila d'inici" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Nombre de files:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Mode" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horitzontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horitzontal (capçaleres rotades)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Capceleres cada %s files" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Classifica per la clau" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2630,68 +2620,68 @@ msgstr "Classifica per la clau" msgid "Options" msgstr "Opcions" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Textos parcials" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Textos sencers" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Clau relacional" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Columna relacional a mostrar" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Mostra continguts binaris" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Mostra contingut BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostra el contingut binari com HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Amagar transformació del navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Text conegut" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Binari conegut" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "S'ha esborrat la fila" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Finalitzar" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Pot ser aproximat. Veieu [doc@faq3-11]PCF -FAQ- 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "en consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2699,21 +2689,21 @@ msgid "" msgstr "" "Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Mostrant registres" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tarda %01.4f seg" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2722,8 +2712,8 @@ msgstr "La consulta tarda %01.4f seg" msgid "With selected:" msgstr "Amb marca:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2734,45 +2724,45 @@ msgstr "Amb marca:" msgid "Check All" msgstr "Marcar-ho tot" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporta" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Crea una vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operacions de resultats de consultes" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Imprimeix vista" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Vista d'impresió (amb texts sencers)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Mostra el gràfic" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualitzar dades GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "No s'ha trobat l'enllaç" @@ -2851,38 +2841,38 @@ msgstr "No s'ha definit l'índex!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexos" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Única" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Comprimit" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalitat" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Ordenació" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentari" @@ -2917,14 +2907,14 @@ msgstr "Vista" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estructura" @@ -2937,12 +2927,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Cerca" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Insereix" @@ -3069,15 +3059,15 @@ msgstr[1] "%1$d files inserides." msgid "Error while creating PDF:" msgstr "Error creant PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "No es pot desar la taula" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Taules recents" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "No hi ha taules recents" @@ -3323,7 +3313,7 @@ msgid "Maximum rows to plot" msgstr "Màxim nombre de files a dibuixar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Navega valors externs" @@ -3733,7 +3723,7 @@ msgstr "Una enumeració, triada de la llista de valors definits" msgid "Max: %s%s" msgstr "Màx: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3794,7 +3784,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línia" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfils" @@ -3833,50 +3823,50 @@ msgstr "La funcionalitat %s es veu afectada per un error conegut, veieu %s" msgid "Click to toggle" msgstr "Prem per canviar" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Navega al teu ordinador:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "No està disponible el directori indicat per pujar arxius" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "No hi ha cap arxiu per pujar" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Buida" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Executar" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Imprimeix" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creació" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Darrera actualització" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Darrera comprovació" @@ -3996,58 +3986,58 @@ msgstr "possible aprofitament" msgid "numeric key detected" msgstr "detectat teclat numéric" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Prova" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Ambdós" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Enlloc" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Esquerra" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Dreta" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Clic" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Doble clic" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Desactivat" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Obert" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Tancat" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4057,7 +4047,7 @@ msgstr "Tancat" msgid "structure" msgstr "estructura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4067,7 +4057,7 @@ msgstr "estructura" msgid "data" msgstr "dades" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4077,31 +4067,31 @@ msgstr "dades" msgid "structure and data" msgstr "estructura i dades" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Ràpid - mostra només les opcions mínimes a configurar" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Complet - mostra totes les opcions a configurar" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Complet - igual que el anterior, però sense l'opció ràpid/complet" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "completa insercions" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "insercions ampliades" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ambdós anteriors" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "cap dels anteriors" @@ -6248,8 +6238,8 @@ msgstr "" "Si tens un nom d'usuari, especifíca'l aqui (per defecte és [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nom d'usuari" @@ -6675,7 +6665,7 @@ msgstr "Base(s) de dades:" msgid "Table(s):" msgstr "Taula(es):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Files:" @@ -7304,7 +7294,7 @@ msgid "No data found for GIS visualization." msgstr "No s'han trobat dades per a visualització GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)." @@ -7426,11 +7416,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Mostrant consulta SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id de la fila inserida: %1$d" @@ -7481,7 +7471,7 @@ msgstr "Afegir prefix de taula" msgid "Add prefix" msgstr "Afegir prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Realment vols executar la següent consulta?" @@ -7703,16 +7693,16 @@ msgid_plural "%s other results found" msgstr[0] "S'ha trobat %s altre resultat" msgstr[1] "S'han trobat %s altres resultats" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrar bases de dades pel nom" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Buidar filtre ràpid" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrar ítems pel nom" @@ -7811,17 +7801,17 @@ msgid "Drop the database (DROP)" msgstr "Esborra la base de dades (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Només l'estructura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estructura i dades" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Només dades" @@ -8245,7 +8235,7 @@ msgstr "Posa els noms de columnes a la primera fila" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8253,7 +8243,7 @@ msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8271,7 +8261,7 @@ msgstr "Versió de PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9413,7 +9403,7 @@ msgstr "Atributs" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9578,7 +9568,7 @@ msgid "Library" msgstr "Llibreria" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versió" @@ -10047,71 +10037,297 @@ msgstr "" "permisos que utilitza el servidor si s'han fet canvis manualment. En aquest " "cas, es necessari %srecarregar els permisos%s abans de continuar." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "No s'ha trobat l'usuari triat a la taula de permisos." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Has afegit un usuari nou." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segon" +msgstr[1] "%d segons" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuts" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estadístiques del registre" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Rang de temps seleccionat:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Elimina dades variables en les instruccions INSERT per a una millor agrupació" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Tria de quin registre vols que es generin les estadístiques." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Els resultats s'agrupen pel text de la consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analitzador de consultes" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instruccions de Monitorització" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"El monitor de phpMyAdmin pot ajudar a optimitzar la configuració del " +"servidor i localitzar a temps les consultes intensives. En aquest darrer cas " +"s'haurà d'establir log_output a 'TABLE' i tenir el slow_query_log o " +"general_log habilitat. Noteu però, que la general_log produeix una gran " +"quantitat de dades i augmenta la càrrega del servidor fins en un 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Lamentablement, el teu servidor de bases de dades no és compatible amb el " +"registre a la taula, que és un requisit per a l'anàlisi dels registres de " +"base de dades amb phpMyAdmin. El registre a la taula se suporta a partir de " +"MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " +"de servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilitzant el monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"El teu navegador actualitzarà tots els gràfics que es mostren en un interval " +"regular. Pots afegir gràfics i canviar la freqüència d'actualització a la " +"secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " +"en cada gràfic corresponent." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Per mostrar les consultes dels registres, selecciona l'interval de temps " +"rellevant en qualsevol gràfic mantenint premut el botó esquerre del ratolí i " +"arrosegant sobre el gràfic. Un cop confirmat, això carregarà una taula de " +"consultes agrupades, on podràs clicar en qualsevol de les instruccions " +"SELECT per analitzar-la amb més detall." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Tingueu en compte:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activar el general_log pot augmentar la càrrega del servidor en un 5-15%. " +"També tingues en compte que la generació d'estadístiques dels registres és " +"una tasca de càrrega intensiva, pel que és aconsellable seleccionar només un " +"lapse de temps petit i per desactivar el general_log i buidar la taula una " +"vegada que el monitoratge no es requereixi més." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Afegir gràfic" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gràfic predefinit" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variable(s) d'estat" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Seleccionar series:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Comunment monitoritzat" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "o escriu el nom de variable:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Mostra com a valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar un divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Afegir unitat als valors" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Afegir aquesta serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Buidar sèrie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series al gràfic:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Començar monitorització" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruccions/configuració" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Reorganització acabada/edició de gràfics" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Activa resaltat" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Velocitat de refresc" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Columnes del gràfic" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Ordenació del gràfic" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " +"navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Restaura el valor per defecte" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultat SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generat per" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tamany de creixement de l'arxiu de dades" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Altre" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Inici" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Temps total:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Temps" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Tanca" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Temps" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Desa aquesta consulta SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiqueta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Deixa accedir a cada usuari a aquesta consulta desada" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10132,10 +10348,6 @@ msgstr "Neteja" msgid "Bookmark this SQL query:" msgstr "Desa aquesta consulta SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Deixa accedir a cada usuari a aquesta consulta desada" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Reemplaça una consulta desada ja existent amb el mateix nom" @@ -10276,7 +10488,7 @@ msgstr "Comprova taules desfragmentades" msgid "Sort" msgstr "Classificació" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Cap" @@ -10432,7 +10644,7 @@ msgstr "Efectiu" msgid "Table %1$s has been altered successfully" msgstr "S'ha modificat la taula %1$s correctament" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Error de consulta" @@ -10590,7 +10802,7 @@ msgstr "Error en arxiu ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: Només es pot accedir a la navegació mitjançant AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Les modificacions han estat desades" @@ -10646,7 +10858,7 @@ msgstr "Canviar petit/gran" msgid "Toggle relation lines" msgstr "Canviar línies de relació" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/Exporta coordenades per a esquema PDF" @@ -10706,43 +10918,43 @@ msgstr "Agrega" msgid "Active options" msgstr "Opcions actives" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "S'ha creat una pàgina" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Ha fallat la creació de pàgina" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "pàgina" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar des de la pàgina seleccionada" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exporta a la pàgina seleccionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crea una pàgina i exporta en ella" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nou nom de pàgina: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Exporta/Importa a escala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomanat" @@ -10772,7 +10984,7 @@ msgstr "Afegida relació interna" msgid "Relation deleted" msgstr "Relació esborrada" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Error desant coordenades per al Dissenyador." @@ -11223,217 +11435,6 @@ msgstr "" "al mateix temps, observar o mesurar la teva base de dades, i desfer el canvi " "si no hi ha una millora clarament mesurable." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instruccions de Monitorització" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"El monitor de phpMyAdmin pot ajudar a optimitzar la configuració del " -"servidor i localitzar a temps les consultes intensives. En aquest darrer cas " -"s'haurà d'establir log_output a 'TABLE' i tenir el slow_query_log o " -"general_log habilitat. Noteu però, que la general_log produeix una gran " -"quantitat de dades i augmenta la càrrega del servidor fins en un 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Lamentablement, el teu servidor de bases de dades no és compatible amb el " -"registre a la taula, que és un requisit per a l'anàlisi dels registres de " -"base de dades amb phpMyAdmin. El registre a la taula se suporta a partir de " -"MySQL 5.1.6 i següents. Pots seguir utilitzant però les funcions de gràfics " -"de servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilitzant el monitor:" - -#: server_status_monitor.php:485 -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 "" -"El teu navegador actualitzarà tots els gràfics que es mostren en un interval " -"regular. Pots afegir gràfics i canviar la freqüència d'actualització a la " -"secció 'Configuració', o eliminar qualsevol gràfic amb la icona d'engranatge " -"en cada gràfic corresponent." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Per mostrar les consultes dels registres, selecciona l'interval de temps " -"rellevant en qualsevol gràfic mantenint premut el botó esquerre del ratolí i " -"arrosegant sobre el gràfic. Un cop confirmat, això carregarà una taula de " -"consultes agrupades, on podràs clicar en qualsevol de les instruccions " -"SELECT per analitzar-la amb més detall." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Tingueu en compte:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activar el general_log pot augmentar la càrrega del servidor en un 5-15%. " -"També tingues en compte que la generació d'estadístiques dels registres és " -"una tasca de càrrega intensiva, pel que és aconsellable seleccionar només un " -"lapse de temps petit i per desactivar el general_log i buidar la taula una " -"vegada que el monitoratge no es requereixi més." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Afegir gràfic" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gràfic predefinit" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variable(s) d'estat" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Seleccionar series:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Comunment monitoritzat" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "o escriu el nom de variable:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Mostra com a valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar un divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Afegir unitat als valors" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Afegir aquesta serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Buidar sèrie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series al gràfic:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estadístiques del registre" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Rang de temps seleccionat:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Només recuperar instruccions SELECT, INSERT, UPDATE i DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Elimina dades variables en les instruccions INSERT per a una millor agrupació" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Tria de quin registre vols que es generin les estadístiques." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Els resultats s'agrupen pel text de la consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analitzador de consultes" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segon" -msgstr[1] "%d segons" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuts" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Començar monitorització" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruccions/configuració" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Reorganització acabada/edició de gràfics" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Activa resaltat" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Velocitat de refresc" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Columnes del gràfic" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Ordenació del gràfic" - -#: server_status_monitor.php:736 -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 "" -"La disposició dels gràfics s'emmagatzema en l'emmagatzematge local dels " -"navegadors. Pots voler exportar-ho, si tens una configuració prou complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Restaura el valor per defecte" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12544,24 +12545,24 @@ msgstr "La clau pot contenir lletres, numeros [em]i[/em] caràcters especials." msgid "Wrong data" msgstr "Dades incorrectes" -#: sql.php:216 +#: sql.php:183 #, 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:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "No s'ha creat el marcador" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Mostrant com a codi PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validat" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12573,21 +12574,11 @@ msgstr "" "Aquesta taula no conté una columna única. Els enllaços d'edició de graella, " "checkbox, Editar, Copiar i Esborrar enllaços no estàn disponibles." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemes amb els indexs de la taula `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Desa aquesta consulta SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiqueta" - #: tbl_chart.php:38 msgid "No data to display" msgstr "No hi ha dades per mostrar" @@ -12663,6 +12654,12 @@ msgstr "Valors X" msgid "Y-Axis label:" msgstr "Etiqueta de l'eix Y:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Fila d'inici" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12804,31 +12801,31 @@ msgstr "Tria la columna a mostrar" msgid "No column selected." msgstr "No s'han triat arxius" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguiment per la taula `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "S'ha creat la versió %1$s, activat el seguiment per %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivat el seguiment per %1$s a la versió %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "S'ha activat el seguiment de %1$s a la versió %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Declaracions SQL executades." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12836,113 +12833,113 @@ msgstr "" "Pots executar el bolcat mitjançant la creació i utilització d'una base de " "dades temporal. Si us plau, assegura't que tens els permisos per fer-ho." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comenta aquestes dues línies si no les necessites." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Declaracions SQL exportades. Copia el bolcat o executa'l." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantània de la versió %s (codi SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Definició de seguiment de dades eliminat correctament" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "manipulació de seguiment de dades eliminat correctament" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Seguiment de declaracions" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s amb dates des de %2$s fins a %3$s per l'usuari %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Esborra les dades de seguiment de l'informe" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "No hi ha dades" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Declaració de definició de dades" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Declaració de manipulació de dades" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Bolcat SQL (descàrrega d'arxiu)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Bolcat SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Aquesta opció substituirà la taula i les dades contingudes." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Execució SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exporta com %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostra versions" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactiva el seguiment per %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desactiva ara" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activa el seguiment per %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activa ara" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crea versió %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Segueix aquestes declaracions de definició de dades:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Segueix aquestes declaracions de manipulació de dades:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crea versió" @@ -14292,6 +14289,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "{concurrent_insert} està establert a 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Capceleres cada %s files" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/ckb.po b/po/ckb.po index 05b43f8910..4e90513db4 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-12-24 08:51+0200\n" "Last-Translator: karwan hidayat \n" "Language-Team: Kurdish Sorani %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "بەتاڵ" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "درووستکردن" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "دواترین نوێکردنەوە" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "دواترین پشکنین" @@ -3832,58 +3822,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "تاقیکرنەوە" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3893,7 +3883,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3903,7 +3893,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3913,31 +3903,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5874,8 +5864,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "ناوی بەکارهێنەر" @@ -6267,7 +6257,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6825,7 +6815,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6941,11 +6931,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6996,7 +6986,7 @@ msgstr "گۆڕینی پێشگری خشتە" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7218,18 +7208,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Database name" msgid "filter databases by name" msgstr "ناوی بنکەی دراو" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7327,17 +7317,17 @@ msgid "Drop the database (DROP)" msgstr "سڕینەوەی بنکەی دراوە (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "تەنیا بنچینە" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "بنچینە و زانیاری" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "تەنیا زانیاری" @@ -7747,13 +7737,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7771,7 +7761,7 @@ msgstr "پێوەکراوەکانی php" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8813,7 +8803,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8976,7 +8966,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9423,68 +9413,261 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "دروستکردن" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "هیتر" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "شەممە" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "هەموو کاتەکان:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "کات" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "داخستن" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "کات" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9503,10 +9686,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9632,7 +9811,7 @@ msgstr "پشکنین بۆ ئەو خشتانە بکەن کە ژوورسەریان msgid "Sort" msgstr "ڕیزکردن" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9788,7 +9967,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9925,7 +10104,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9981,7 +10160,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10041,39 +10220,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10101,7 +10280,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10505,186 +10684,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11607,45 +11606,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "شوێندۆز %s دروستکرا" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -11725,6 +11716,12 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "ڕیزی سەرەتا" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11867,143 +11864,143 @@ msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشان msgid "No column selected." msgstr "هیچ ڕیزێک هەڵنەبژێراوە" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -13112,6 +13109,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Headers every %s rows" +#~ msgstr "ناونیشانەکانی هەموو %s ڕیزەکان" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/cs.po b/po/cs.po index 4c52afb5e1..012a26c2fa 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-12 09:37+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Czech \n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Vyhledat:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,24 +72,24 @@ msgstr "Vyhledat:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Proveď" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Název klíče" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Popis" @@ -108,7 +108,7 @@ msgstr "" "Soubor %s nebyl nalezen, více informací naleznete na stránce www.phpmyadmin." "net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Byla vytvořena databáze %1$s." @@ -136,7 +136,7 @@ msgstr "Komentář k tabulce:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Pole" @@ -159,7 +159,7 @@ msgstr "Pole" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -176,7 +176,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulový" @@ -191,7 +191,7 @@ msgstr "Nulový" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Výchozí" @@ -233,9 +233,9 @@ msgstr "Komentáře" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -260,9 +260,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ano" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabulka" @@ -391,7 +391,7 @@ msgstr "Sledované tabulky" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databáze" @@ -399,17 +399,17 @@ msgstr "Databáze" msgid "Last version" msgstr "Poslední verze" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Vytvořeno" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Aktualizováno" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stav" @@ -422,7 +422,7 @@ msgstr "Stav" msgid "Action" msgstr "Operace" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Zobrazit" @@ -431,18 +431,18 @@ msgid "Delete tracking data for this table" msgstr "Odstranit všechny informace o sledování této tabulky" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Odstranit" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "zapnuté" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "není zapnuté" @@ -450,11 +450,11 @@ msgstr "není zapnuté" msgid "Versions" msgstr "Verze" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informace o sledování" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snímek struktury" @@ -649,7 +649,7 @@ 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:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Vytvořen oblíbený dotaz %s" @@ -676,7 +676,7 @@ msgstr "" "znamená, že phpMyAdmin nebude schopen načíst tento soubor, pokud nezvýšíte " "časové limity v PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -883,7 +883,7 @@ 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." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Příkaz „DROP DATABASE“ je vypnutý." @@ -892,7 +892,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Chystáte se ZRUŠIT celou databázi!" @@ -976,8 +976,8 @@ msgstr "Načítám oprávnění" msgid "Removing Selected Users" msgstr "Odstraňuji vybrané uživatele" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Ukončit" @@ -1103,13 +1103,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1148,7 +1148,7 @@ msgid "Traffic" msgstr "Provoz" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Nastavení" @@ -1168,13 +1168,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Žádná" @@ -1273,7 +1274,7 @@ msgstr "Změnit nastavení" msgid "Current settings" msgstr "Aktuální nastavení" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Název grafu" @@ -1362,7 +1363,7 @@ msgstr "Vysvětlení dotazu" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Čas" @@ -1459,7 +1460,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Import" @@ -1516,7 +1517,7 @@ msgid "Cancel" msgstr "Zrušit" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Nahrávám" @@ -1664,10 +1665,10 @@ msgstr "Skrýt pole pro dotaz" msgid "Show query box" msgstr "Zobrazit pole pro dotaz" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1677,7 +1678,7 @@ msgstr "Upravit" msgid "No rows selected" msgstr "Nebyl vybrán žádný řádek" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1759,7 +1760,7 @@ msgstr "Obsah datového bodu" msgid "Ignore" msgstr "Ignorovat" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopírovat" @@ -1775,7 +1776,7 @@ msgstr "Linka" msgid "Polygon" msgstr "Mnohoúhelník" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometrie" @@ -2256,33 +2257,33 @@ msgstr "za hodinu" msgid "per day" msgstr "za den" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Nepodařilo se přečíst existující konfigurační soubor (%s)." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Chybná přístupová práva konfiguračního souboru, neměl by být zapisovatelný " "pro všechny!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Velikost písma" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Vzestupně" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2297,7 +2298,7 @@ msgstr "Pole:" msgid "Sort:" msgstr "Řazení:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Zobrazit:" @@ -2416,8 +2417,8 @@ msgstr[1] "%1$s odpovídající záznamy v %2$s" msgstr[2] "%1$s odpovídajících záznamů v %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Projít" @@ -2426,14 +2427,14 @@ msgstr "Projít" msgid "Delete the matches for the %s table?" msgstr "Odstranit nalezené záznamy z tabulky %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Odstranit" @@ -2495,41 +2496,32 @@ msgctxt "Last page" msgid "End" msgstr "Poslední" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Počáteční řádek:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Počet řádků:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Režim:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vodorovném" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vodorovném (otočené hlavičky)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "svislém" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Záhlaví opakovat každých %s řádek" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Seřadit podle klíče" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2556,68 +2548,68 @@ msgstr "Seřadit podle klíče" msgid "Options" msgstr "Nastavení" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Zkrácené texty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Celé texty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relační klíč" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Pole pro zobrazení v relacích" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Zobrazit binární obsah" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Zobrazit obsah BLOBu" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Zobrazit binární obsah šestnáctkově (HEX)" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Nepoužít při prohlížení transformace" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Text (WKT)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Binární (WKB)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Řádek byl smazán" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Ukončit" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Počet nemusí být přesný, viz [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "v dotazu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2625,21 +2617,21 @@ msgid "" msgstr "" "Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Zobrazeny záznamy" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "celkem" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Dotaz trval %01.4f sekund" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2648,8 +2640,8 @@ msgstr "Dotaz trval %01.4f sekund" msgid "With selected:" msgstr "Zaškrtnuté:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2660,45 +2652,45 @@ msgstr "Zaškrtnuté:" msgid "Check All" msgstr "Zaškrtnout vše" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Vytvořit pohled" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operace s výsledky dotazu" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Náhled pro tisk" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Náhled pro tisk (s kompletními texty)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Zobrazit graf" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Zobrazit data GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Odkaz nenalezen" @@ -2777,38 +2769,38 @@ msgstr "Není definován žádný klíč!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Klíče" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikátní" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Zabaleno" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Mohutnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Porovnávání" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentář" @@ -2843,14 +2835,14 @@ msgstr "Pohled" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2863,12 +2855,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Vyhledávání" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Vložit" @@ -2998,15 +2990,15 @@ msgstr[2] "Vloženo %1$d řádek." msgid "Error while creating PDF:" msgstr "Chyba při vytváření PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nepodařilo se uložit nedávnou tabulku" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Nedávné tabulky" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nebyly nalezeny žádné nedávné tabulky" @@ -3245,7 +3237,7 @@ msgid "Maximum rows to plot" msgstr "Nejvyšší počet vykreslených řádků" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Projít hodnoty cizích klíčů" @@ -3634,7 +3626,7 @@ msgstr "Výčtový typ, umožňující výběr ze zadaných hodnot" msgid "Max: %s%s" msgstr "Maximální velikost: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL dotaz:" @@ -3693,7 +3685,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upravit zde" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilování" @@ -3732,49 +3724,49 @@ msgstr "Funkčnost %s je omezena známou chybou, viz %s" msgid "Click to toggle" msgstr "Klikněte pro přepnutí" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Procházet váš počítač:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvolte soubor z adresáře pro upload na serveru %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Adresář určený pro upload souborů nemohl být otevřen" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nebyl zvolen žádný soubor pro nahrání" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Vyprázdnit" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Spustit" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Vytisknout" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Vytvořeno" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Poslední změna" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Poslední kontrola" @@ -3892,54 +3884,54 @@ msgstr "možný pokus o exploit" msgid "numeric key detected" msgstr "detekován číselný klíč" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Ikony" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Text" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Obojí" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nikde" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Nalevo" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Napravo" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Kliknutí" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dvojklik" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Vypnuto" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Otevřené" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Uzavřené" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3949,7 +3941,7 @@ msgstr "Uzavřené" msgid "structure" msgstr "struktura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3959,7 +3951,7 @@ msgstr "struktura" msgid "data" msgstr "data" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3969,31 +3961,31 @@ msgstr "data" msgid "structure and data" msgstr "struktura a data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rychlý - zobrazí jen minimum možností nastavení" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Vlastní - zobrazí všechna možná nastavení" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "úplné inserty" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "rozšířené inserty" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "oba výše uvedené" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ani jeden z výše uvedených" @@ -6082,8 +6074,8 @@ msgstr "" "Pokud máte vlastní užvatelské jméno, zadejte ho zde (jinak se použije " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Uživatel" @@ -6493,7 +6485,7 @@ msgstr "Databáze:" msgid "Table(s):" msgstr "Tabulky:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Řádky:" @@ -7107,7 +7099,7 @@ msgid "No data found for GIS visualization." msgstr "Nebyla nalezena žádná data zobrazení GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)." @@ -7225,11 +7217,11 @@ msgstr "" "Použijte klávesu TAB pro pohyb mezi hodnotami nebo CTRL+šipky po pohyb všemi " "směry" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Zobrazuji SQL dotaz" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID vloženého řádku: %1$d" @@ -7274,7 +7266,7 @@ msgstr "Přidat tabulce předponu:" msgid "Add prefix" msgstr "Přidat předponu" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Opravdu si přejete vykonat následující příkaz?" @@ -7497,16 +7489,16 @@ msgstr[0] "nalezen %s další výsledek" msgstr[1] "nalezeny %s další výsledky" msgstr[2] "nalezeno %s dalších výsledků" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrovat databáze podle jména" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Vymazat filtr" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrovat položky podle jména" @@ -7602,17 +7594,17 @@ msgid "Drop the database (DROP)" msgstr "Odstranit databázi (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Pouze strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strukturu a data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Jen data" @@ -8024,13 +8016,13 @@ msgstr "Přidat jména polí na první řádek:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Počítač:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Vytvořeno:" @@ -8044,7 +8036,7 @@ msgstr "Verze PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Databáze:" @@ -9159,7 +9151,7 @@ msgstr "Vlastnosti" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Další" @@ -9322,7 +9314,7 @@ msgid "Library" msgstr "Knihovna" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verze" @@ -9785,54 +9777,270 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Zvolený uživatel nebyl nalezen v tabulce oprávnění." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Uživatel byl přidán." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundy" +msgstr[2] "%d sekund" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuta" +msgstr[1] "%d minuty" +msgstr[2] "%d minut" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistiky záznamů" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Zvolený časový rozsah:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Před sloučením odstranit proměnná data v příkazech INSERT" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Zvolte ze kterého záznamu si přejete vygenerovat statistiku." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Výsledky jsou sloučeny podle textu dotazu." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analýza dotazu" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrukce monitoru" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Monitor phpMyAdmina vám může pomoci s vyladěním nastavení serveru a nalézt " +"náročné dotazy. Pro porovnávání dotazů budete potřebovat mít nastavený " +"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%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Váš databázový server bohužel nepodporuje záznam dotazů do tabulky, které " +"phpMyAdmin potřebuje pro analýzu databázových záznam. Tato vlastnost je " +"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." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Používání monitoru:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Váš prohlížeč bude graf obnovovat v pravidelných intervalech. V nastaveních " +"můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " +"odstranit grafy." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Pro zobrazení dotazů ze záznamu zvolte časové období, které vás zajímá, " +"podržením levého tlačítka myši a pohybem přes graf. Po potvrzení bude " +"nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " +"analýze." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Poznámka:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Zapnutí záznamu dotazů může zvýšit zatížení serveru o 5-15%. Výpočet " +"statistik z těchto záznamů je také výpočetně náročný, proto doporučujeme " +"vybírat krátké časové období a záznam vypnout poté co již monitorování " +"nebudete potřebovat." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Přidat graf" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Předdefinované grafy" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Stavové proměnné" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vyberte série:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Obvykle monitorované" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "nebo zadejte jméno proměnné:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Zobrazit jako rozdíl" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Vynásobit" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Zobrazit hodnoty s jednotkou" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Přidat tuto sérii" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Odstranit série" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Série v grafu:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Spustit monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Návod/Nastavení" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Ukončit přesouvání grafů" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Povolit přesouvání grafů" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Obnovovací frekvence" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Sloupce grafu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Uspořádání grafů" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"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." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Obnovit na výchozí hodnotu" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Výsledek SQL dotazu" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Vytvořil:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Podrobné profilování" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Pořadí" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Stav" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Souhrn podle stavů" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Celkový čas" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% času" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Volání" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø čas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Přidat tento SQL dotaz do oblíbených" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Název:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9851,10 +10059,6 @@ msgstr "Vyčistit" msgid "Bookmark this SQL query:" msgstr "Přidat tento SQL dotaz do oblíbených:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Přepsat existující oblíbený dotaz stejného jména" @@ -9993,7 +10197,7 @@ msgstr "Zaškrtnout neoptimální" msgid "Sort" msgstr "Řadit" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Žádná" @@ -10147,7 +10351,7 @@ msgstr "Efektivní" msgid "Table %1$s has been altered successfully" msgstr "Tabulka %1$s byla úspěšně změněna" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Chyba dotazu" @@ -10298,7 +10502,7 @@ msgstr "Chyba v ZIP archívu:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Chyba: Navigace je přístupná jen přes AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Změny byly uloženy" @@ -10354,7 +10558,7 @@ msgstr "Přepnout malé/velké" msgid "Toggle relation lines" msgstr "Přepnout zobrazení relací" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export souřadnic pro PDF schéma" @@ -10412,39 +10616,39 @@ msgstr "Sloučit" msgid "Active options" msgstr "Zapnuté parametry" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Stránka byla vytvořena" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Vytvoření stránky selhalo" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Stránka:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importovat ze zvolené stránky" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportovat na zvolenou stránku" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Vytvořit novou stránku a exportovat na ní" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Název nové stránky: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exportovat/Importovat v měřítku:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "doporučené" @@ -10472,7 +10676,7 @@ msgstr "Interní relace vytvořena" msgid "Relation deleted" msgstr "Relace smazána" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Chyba při ukládání souřadnic pro Návrháře." @@ -10916,209 +11120,6 @@ msgstr "" "sledovat výsledky případně provést zátěžové testy. Pokud nedošlo ke " "znatelnému zlepšení, můžete nastavení vrátit zpět." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrukce monitoru" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Monitor phpMyAdmina vám může pomoci s vyladěním nastavení serveru a nalézt " -"náročné dotazy. Pro porovnávání dotazů budete potřebovat mít nastavený " -"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_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Váš databázový server bohužel nepodporuje záznam dotazů do tabulky, které " -"phpMyAdmin potřebuje pro analýzu databázových záznam. Tato vlastnost je " -"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_monitor.php:482 -msgid "Using the monitor:" -msgstr "Používání monitoru:" - -#: server_status_monitor.php:485 -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 "" -"Váš prohlížeč bude graf obnovovat v pravidelných intervalech. V nastaveních " -"můžete přidat další grafy, změnit obnovovací frekvenci nebo přesunout či " -"odstranit grafy." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Pro zobrazení dotazů ze záznamu zvolte časové období, které vás zajímá, " -"podržením levého tlačítka myši a pohybem přes graf. Po potvrzení bude " -"nahrána tabulka sloučených dotazů, kde můžete zvolit libovolný dotaz k další " -"analýze." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Poznámka:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Zapnutí záznamu dotazů může zvýšit zatížení serveru o 5-15%. Výpočet " -"statistik z těchto záznamů je také výpočetně náročný, proto doporučujeme " -"vybírat krátké časové období a záznam vypnout poté co již monitorování " -"nebudete potřebovat." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Přidat graf" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Předdefinované grafy" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Stavové proměnné" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vyberte série:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Obvykle monitorované" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "nebo zadejte jméno proměnné:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Zobrazit jako rozdíl" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Vynásobit" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Zobrazit hodnoty s jednotkou" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Přidat tuto sérii" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Odstranit série" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Série v grafu:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistiky záznamů" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Zvolený časový rozsah:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Stáhnout jen příkazy SELECT, INSERT, UPDATE a DELETE" - -#: server_status_monitor.php:596 -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_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Zvolte ze kterého záznamu si přejete vygenerovat statistiku." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Výsledky jsou sloučeny podle textu dotazu." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analýza dotazu" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundy" -msgstr[2] "%d sekund" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuta" -msgstr[1] "%d minuty" -msgstr[2] "%d minut" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Spustit monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Návod/Nastavení" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Ukončit přesouvání grafů" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Povolit přesouvání grafů" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Obnovovací frekvence" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Sloupce grafu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Uspořádání grafů" - -#: server_status_monitor.php:736 -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 "" -"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_monitor.php:750 -msgid "Reset to default" -msgstr "Obnovit na výchozí hodnotu" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12191,24 +12192,24 @@ msgstr "" msgid "Wrong data" msgstr "Chybná data" -#: sql.php:216 +#: sql.php:183 #, 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:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Nebyl vytvořen oblíbený dotaz" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Zobrazuji jako PHP kód" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Proběhlo zkontrolování SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12217,19 +12218,11 @@ msgstr "" "Tabulka %s neobsahuje unikátní klíč. Editování v mřížce, zaškrtávací políčka " "nebo odkazy na editaci a mazání proto nejsou k dispozici." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s klíči v tabulce „%s\"" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Přidat tento SQL dotaz do oblíbených" - -#: sql.php:1191 -msgid "Label:" -msgstr "Název:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Nebyla nalezena žádná data" @@ -12305,6 +12298,10 @@ msgstr "Hodnoty X" msgid "Y-Axis label:" msgstr "Popis osy Y:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Počáteční řádek:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12434,31 +12431,31 @@ msgstr "Zvolte která pole zobrazit:" msgid "No column selected." msgstr "Nebyl vybrán žádný sloupec." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Záznamy o sledování tabulky `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Verze %1$s vytvořena, sledování pro %2$s je zapnuté." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledování pro %1$s bylo vypnuto ve verzi %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledování pro %1$s bylo zapnuto ve verzi %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL příkazy byly provedeny." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12466,114 +12463,114 @@ msgstr "" "Záznam můžete spustit vytvořením a použitím dočasné databáze. Prosím ověřte, " "že na tuto operací máte oprávnění." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Zakomentujte následující dva řádky pokud je nepotřebujete." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL příkazy byly exportovány. Prosím zkopírujte si je, nebo je spusťte." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Snímek verze %s (SQL kód)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Uložené příkazy pro změnu struktury byly úspěšně smazány" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Uložené příkazy pro změnu dat byly úspěšně smazány" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Sledování příkazů" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zobrazit %1$s mezi daty %2$s a %3$s od uživatele %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Odstranit tyto informace o sledování této tabulky" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nejsou k dispozici žádná data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Příkaz pro definici dat" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Příkaz pro úpravu dat" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Výpis SQL (stáhnout soubor)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Výpis SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Tato volba nahradí vaší tabulku a data, která obsahuje." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Provedení SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportovat jako %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Zobrazit verze" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Vypnout sledování pro %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Vypnout teď" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Zapnuté sledování pro %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Zapnout teď" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Vytvořit verzi %1$s z %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Sledovat tyto příkazy pro definici dat:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Sledovat tyto příkazy pro úpravu dat:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Vytvořit verzi" @@ -13861,6 +13858,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastaveno na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Záhlaví opakovat každých %s řádek" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/cy.po b/po/cy.po index cf7995beba..680106a650 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh \n" @@ -49,7 +49,7 @@ msgid "Search:" msgstr "Chwilio" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,24 +75,24 @@ msgstr "Chwilio" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Ewch" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Enw allweddol" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Disgrifiad" @@ -111,7 +111,7 @@ msgstr "" "Dyw'r ffeil %s ddim ar gael ar y system hon, ewch i www.phpmyadmin.net am " "wybodaeth bellach." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Cafodd y gronfa ddata %1$s ei chreu." @@ -141,7 +141,7 @@ msgstr "Sylwadau tabl" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Colofn" @@ -164,7 +164,7 @@ msgstr "Colofn" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Math" @@ -181,7 +181,7 @@ msgstr "Math" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -196,7 +196,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Diofyn" @@ -238,9 +238,9 @@ msgstr "Sylwadau" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Na" @@ -265,9 +265,9 @@ msgstr "Na" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ie" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabl" @@ -404,7 +404,7 @@ msgstr "Tablau a draciwyd" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Cronfa ddata" @@ -412,17 +412,17 @@ msgstr "Cronfa ddata" msgid "Last version" msgstr "Fersiwn diweddaraf" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Crëwyd" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Diweddarwyd" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Statws" @@ -435,7 +435,7 @@ msgstr "Statws" msgid "Action" msgstr "Gweithred" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Dangos" @@ -444,18 +444,18 @@ msgid "Delete tracking data for this table" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Gollwng" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "gweithredol" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ddim yn weithredol" @@ -463,11 +463,11 @@ msgstr "ddim yn weithredol" msgid "Versions" msgstr "Fersiynau" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Adroddiad tracio" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Ciplun strwythur" @@ -679,7 +679,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Nid oedd modd llwytho ategynnau mewnforio, gwiriwch eich arsefydliad!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Clustnodi %s a grëwyd" @@ -702,7 +702,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -913,7 +913,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Mae datganiadau \"DROP DATABASE\" wedi'u hanalluogi." @@ -923,7 +923,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Rydych am DINISTRIO cronfa ddata gyfan!" @@ -1024,8 +1024,8 @@ msgstr "Dim Breintiau" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Cau" @@ -1164,13 +1164,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1213,7 +1213,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1239,13 +1239,14 @@ msgstr "Snap i'r grid" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Dim" @@ -1346,7 +1347,7 @@ msgstr "Nodweddion perthynas cyffredinol" msgid "Current settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1442,7 +1443,7 @@ msgstr "Esbonio SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Amser" @@ -1555,7 +1556,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Mewnforio" @@ -1622,7 +1623,7 @@ msgid "Cancel" msgstr "Diddymu" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy #| msgid "Load" msgid "Loading" @@ -1811,10 +1812,10 @@ msgstr "mewn ymholiad" msgid "Show query box" msgstr "Dangos ymholiad mewnosod" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1824,7 +1825,7 @@ msgstr "Golygu" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1920,7 +1921,7 @@ msgstr "Datganiad diffiniad data" msgid "Ignore" msgstr "Anwybyddu" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1938,7 +1939,7 @@ msgstr "Terfynwyd llinellau gan" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2439,31 +2440,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Maint ffont" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Esgynnol" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2482,7 +2483,7 @@ msgstr "Colofn" msgid "Sort:" msgstr "Trefnu" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2608,8 +2609,8 @@ msgstr[0] "%s ergyd mewn tabl %s" msgstr[1] "%s ergyd mewn tabl %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Pori" @@ -2618,14 +2619,14 @@ msgstr "Pori" msgid "Delete the matches for the %s table?" msgstr "Dileu'r cydweddau ar gyfer tabl %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Dileu" @@ -2701,48 +2702,36 @@ msgctxt "Last page" msgid "End" msgstr "Diwedd" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Showing rows" -msgid "Start row:" -msgstr "Yn dangos rhesi" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of columns" msgid "Number of rows:" msgstr "Nifer y colofnau" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mo" msgid "Mode:" msgstr "Llu" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "llorweddol" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "llorweddol (penawdau wedi cylchdroi)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "fertigol" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Gweithredu ymholiad a glustnodwyd" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Trefnu gan allwedd" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2769,74 +2758,74 @@ msgstr "Trefnu gan allwedd" msgid "Options" msgstr "Opsiynau" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testunau Rhannol" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testunau Llawn" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Allwedd perthynol" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Colofn dangosydd perthynol" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Dangos cynnwys deuaidd" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Dangos cynnwys BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Dangos cynnwys deuaidd fel HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Trawsffurfiad porwr" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Cafodd y rhes ei dileu" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Lladd" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "mewn ymholiad" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2844,21 +2833,21 @@ msgid "" msgstr "" "Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Yn dangos rhesi" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "cyfanswm" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Cymerodd yr ymholiad %01.4f eiliad" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2867,8 +2856,8 @@ msgstr "Cymerodd yr ymholiad %01.4f eiliad" msgid "With selected:" msgstr "Gyda'r dewis:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2879,49 +2868,49 @@ msgstr "Gyda'r dewis:" msgid "Check All" msgstr "Dewis Pob" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Allforio" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Gweithrediadau canlyniadau ymholiad" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Argraffu golwg" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Argraffu golwg (gyda thestunau llawn)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Dangos sgema PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Methu â darganfod y cysylltiad" @@ -2998,38 +2987,38 @@ msgstr "Dim indecs wedi'i ddiffinio!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indecsau" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unigryw" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Paciwyd" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Coladiad" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Sylw" @@ -3064,14 +3053,14 @@ msgstr "Dangos" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Strwythur" @@ -3084,12 +3073,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Chwilio" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Mewnosod" @@ -3218,17 +3207,17 @@ msgstr[1] "%1$d rhes wedi'u hychwanegu." msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "Cyfrifwch y tablau" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3479,7 +3468,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3833,7 +3822,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Uchaf: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3896,7 +3885,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Mewnol" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Proffilio" @@ -3939,52 +3928,52 @@ msgstr "" msgid "Click to toggle" msgstr "Pwyso i ddewis" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "cyfeiriadur lanlwytho y gweinydd gwe" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Gwagu" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Argraffu" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Cread" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Diweddariad diwethaf" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Gwiriad diwethaf" @@ -4104,60 +4093,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Nesaf" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Analluogwyd" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Cau" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4167,7 +4156,7 @@ msgstr "Cau" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4177,7 +4166,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4189,33 +4178,33 @@ msgstr "" msgid "structure and data" msgstr "Strwythur a data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Autoextend increment" msgid "extended inserts" msgstr "Cynyddiad awtoestyn" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6261,8 +6250,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Enw defnyddiwr" @@ -6696,7 +6685,7 @@ msgstr "Cronfeydd Data" msgid "Table(s):" msgstr "Tablau" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7295,7 +7284,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7419,11 +7408,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7476,7 +7465,7 @@ msgstr "Ailenwi tabl i" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7700,18 +7689,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "enw tabl" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7813,17 +7802,17 @@ msgid "Drop the database (DROP)" msgstr "Dilëwch y gronfa ddata (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Strwythur yn unig" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strwythur a data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data yn unig" @@ -8277,7 +8266,7 @@ msgstr "Rhoi enwau colofnau yn y rhes gyntaf" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8285,7 +8274,7 @@ msgstr "Gwesteiwr" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8303,7 +8292,7 @@ msgstr "Fersiwn PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9433,7 +9422,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ychwanegol" @@ -9602,7 +9591,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Fersiwn" @@ -10056,68 +10045,286 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Eiliad" +msgstr[1] "Eiliad" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Munud" +msgstr[1] "Munud" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Dangos ystadegau" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Dewis Tablau" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "Ymholiad" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Routines" +msgid "Add chart" +msgstr "Rheolweithiau" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Tynnwch y gronfa ddata" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Dewis Tablau" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Enw tabl annilys" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Ychwanegwch weinydd newydd" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Adfywio" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Chart columns" +msgstr "Ychwanegu/Dileu colofnau" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Adfer gwerth diofyn" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "Generadu" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Maint tyfu'r ffeil ddata" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Sad" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Cyfanswm" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Amser" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Cau" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Amser" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Clustnodwch yr ymholiad SQL hwn" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "Allwedd y label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10138,10 +10345,6 @@ msgstr "Clirio" msgid "Bookmark this SQL query:" msgstr "Clustnodwch yr ymholiad SQL hwn" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10269,7 +10472,7 @@ msgstr "Gwiriwch dablau â gorbenion" msgid "Sort" msgstr "Trefnu" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10431,7 +10634,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10583,7 +10786,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Cafodd yr addasiadau eu cadw" @@ -10641,7 +10844,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Dilëwch berthynas" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10717,47 +10920,47 @@ msgstr "Creu" msgid "Active options" msgstr "Gweithredoedd" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "tudalennau" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Mewnforiwch ffeiliau" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "Crëwch dudalen" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "Page name" msgid "New page name: " msgstr "Enw'r dudalen" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10787,7 +10990,7 @@ msgstr "Perthynas mewnol wedi'i ychwanegu" msgid "Relation deleted" msgstr "Perthynas wedi'i ddileu" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Gwall wrth gadw cyfesurynnau ar gyfer y Dyluniwr." @@ -11202,209 +11405,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Routines" -msgid "Add chart" -msgstr "Rheolweithiau" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Tynnwch y gronfa ddata" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Dewis Tablau" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Enw tabl annilys" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Ychwanegwch weinydd newydd" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Dangos ystadegau" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Dewis Tablau" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "Ymholiad" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Eiliad" -msgstr[1] "Eiliad" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Munud" -msgstr[1] "Munud" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Adfywio" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Chart columns" -msgstr "Ychwanegu/Dileu colofnau" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Adfer gwerth diofyn" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12342,49 +12342,39 @@ msgstr "" msgid "Wrong data" msgstr "Dim cronfeydd data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Clustnodi %s a grëwyd" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Dilysu SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Clustnodwch yr ymholiad SQL hwn" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "Allwedd y label" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12478,6 +12468,12 @@ msgstr "Gwerth" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Showing rows" +msgid "Start row:" +msgstr "Yn dangos rhesi" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12628,156 +12624,156 @@ msgstr "Dewis colofn i'w dangos" msgid "No column selected." msgstr "Dim cronfeydd data wedi'u dewis." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Mae tracio'n weithredol" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Ciplun fersiwn %s (cod SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Datganiadau tracio" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Dilëwch data tracio ar gyfer y tabl hwn" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Dim cronfeydd data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dyddiad" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Datganiad diffiniad data" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Datganiad trin data" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Dadlwythiad SQL (lawrlwytho ffeil)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Dadlwythiad SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Bydd yr opsiwn hwn yn disodli eich tabl a'r data sydd ynddo." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Gweithrediad SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Allforio fel %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Dangos fersiynau" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Dadweithredwch dracio am %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Dadweithredwch nawr" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Gweithredwch dracio am %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Gweithredwch nawr" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Crëwch fersiwn %s o %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Traciwch y datganiadau diffiniad data hyn:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Traciwch y datganiadau trin data hyn:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crëwch fersiwn" @@ -14005,6 +14001,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Gweithredu ymholiad a glustnodwyd" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/da.po b/po/da.po index 28f9150c3f..8ff4357594 100644 --- a/po/da.po +++ b/po/da.po @@ -3,10 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-13 20:03+0200\n" "Last-Translator: Aputsiaq Niels Janussen \n" -"Language-Team: Danish \n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +45,7 @@ msgid "Search:" msgstr "Søg:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -70,24 +71,24 @@ msgstr "Søg:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Udfør" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nøglenavn" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beskrivelse" @@ -105,7 +106,7 @@ msgid "" msgstr "" "Filen %s er ikke tilgængelig, besøg www.phpmyadmin.net for mere information." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Database %1$s er oprettet." @@ -133,7 +134,7 @@ msgstr "Tabelkommentarer:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolonnenavn" @@ -156,7 +157,7 @@ msgstr "Kolonnenavn" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Datatype" @@ -173,7 +174,7 @@ msgstr "Datatype" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulværdi" @@ -188,7 +189,7 @@ msgstr "Nulværdi" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standardværdi" @@ -230,9 +231,9 @@ msgstr "Kommentarer" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nej" @@ -257,9 +258,9 @@ msgstr "Nej" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -310,7 +311,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -386,7 +387,7 @@ msgstr "Sporede tabeller" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Database" @@ -394,17 +395,17 @@ msgstr "Database" msgid "Last version" msgstr "Seneste version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Oprettet" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Opdateret" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -417,7 +418,7 @@ msgstr "Status" msgid "Action" msgstr "Handling" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Vis" @@ -426,18 +427,18 @@ msgid "Delete tracking data for this table" msgstr "Slet sporingsdata for denne tabel" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Slet" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ikke aktiv" @@ -445,11 +446,11 @@ msgstr "ikke aktiv" msgid "Versions" msgstr "Versioner" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Sporingsrapport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Øjebliksbillede af struktur" @@ -647,7 +648,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Kunne ikke indlæse importplugins, tjek venligst din installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bogmærke %s oprettet" @@ -674,7 +675,7 @@ 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:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -882,7 +883,7 @@ msgid "" "issues." msgstr "Server med Suhosin.Se %sdocumentation%s for mulige problemer." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." @@ -891,7 +892,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 udføre \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Du er ved at DESTRUERE en komplet database!" @@ -975,8 +976,8 @@ msgstr "Genindlæser privillegier" msgid "Removing Selected Users" msgstr "Fjerner valge brugere" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Luk" @@ -1103,13 +1104,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1148,7 +1149,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Indstillinger" @@ -1168,13 +1169,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ingen" @@ -1274,7 +1276,7 @@ msgstr "Ændre indstillinger" msgid "Current settings" msgstr "Aktuelle indstillinger" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagramtitel" @@ -1360,7 +1362,7 @@ msgstr "Forklar output" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tid" @@ -1459,7 +1461,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importér" @@ -1516,7 +1518,7 @@ msgid "Cancel" msgstr "Annuller" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Indlæser" @@ -1667,10 +1669,10 @@ msgstr "Skjul forespørgeselsboks" msgid "Show query box" msgstr "Vis forespørgselsbox" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1680,7 +1682,7 @@ msgstr "Ret" msgid "No rows selected" msgstr "Ingen rækker valgt" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1765,7 +1767,7 @@ msgstr "Datapunkt-indhold" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopi" @@ -1781,7 +1783,7 @@ msgstr "Linjestreng" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometri" @@ -2265,32 +2267,32 @@ msgstr "pr. time" msgid "per day" msgstr "per dag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Eksisterende konfigurationsfil (%s) kan ikke læses." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Forkerte rettigheder på konfigurationsfil. Må ikke være skrivbar af alle!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Skriftstørrelse" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Stigende" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2305,7 +2307,7 @@ msgstr "Kolonne:" msgid "Sort:" msgstr "Sortér:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Vis:" @@ -2422,8 +2424,8 @@ msgstr[0] "%1$s sammenfald i %2$s" msgstr[1] "%1$s sammenfald i %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Vis" @@ -2432,14 +2434,14 @@ msgstr "Vis" msgid "Delete the matches for the %s table?" msgstr "Slet sammenfald for %s tabellen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Slet" @@ -2501,41 +2503,32 @@ msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Startrække:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Antal rækker:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Tilstand:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vandret" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vandret (roterede overskrifter)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "lodret" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Overskrifter for hver %s. række" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sorteringsnøgle" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2562,68 +2555,68 @@ msgstr "Sorteringsnøgle" msgid "Options" msgstr "Indstillinger" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Komplette tekster" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relationel nøgle" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relationel visningskolonne" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Vis binært indhold" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Vis indhold af BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Vis binært indhold som HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Skjul browser-transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Velkendt tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Velkendt binær" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Rækken er slettet" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Dræb (Kill)" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kan være anslået. Se [doc@faq3-11] FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "i forespørgsel" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2631,21 +2624,21 @@ msgid "" msgstr "" "Viewet har som minimum dette antal rækker. Se venligst %sdokumentationen%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Viser poster" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "forepørgsel tog %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2654,8 +2647,8 @@ msgstr "forepørgsel tog %01.4f sek" msgid "With selected:" msgstr "Med det markerede:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2666,45 +2659,45 @@ msgstr "Med det markerede:" msgid "Check All" msgstr "Vælg alle" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportér" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Opret view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Forespørgselsresultat operationer" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Udskriv" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Udskriv (med fulde tekster)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link ikke fundet" @@ -2781,38 +2774,38 @@ msgstr "Intet indeks defineret!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Tegnsæt (sortering)" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2847,14 +2840,14 @@ msgstr "Visning" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2867,12 +2860,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Søg" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Indsæt" @@ -2999,15 +2992,15 @@ msgstr[1] "%1$d rækker sat ind." msgid "Error while creating PDF:" msgstr "Fejl ved oprettelse af PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Kunne ikke gemme seneste tabel" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Seneste tabeller" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Der er ingen nye tabeller" @@ -3249,7 +3242,7 @@ msgid "Maximum rows to plot" msgstr "Maksimalt antal plottede rækker" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Bladre i fremmedværdier" @@ -3652,7 +3645,7 @@ msgstr "En optælling, udvalgt fra listen med definerede værdier" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL-forespørgsel:" @@ -3711,7 +3704,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "I linje" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilering" @@ -3750,51 +3743,51 @@ msgstr "Funktionaliteten af %s er påvirket af en kendt fejl, se %s" msgid "Click to toggle" msgstr "Klik for at skifte" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Gennemse din computer:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vælg fra %s - webserverens upload-mappe:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Mappen du har sat til upload-arbejde kan ikke findes" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Der er ikke nogen filer at uploade" # By "Empty", if this is an action, it should translate to "Tøm" but if it's a # state it should translate to "Tom". -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Tøm" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Udfør" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Print" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Oprettelse" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Sidste opdatering" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Seneste tjek" @@ -3913,54 +3906,54 @@ msgstr "muligt sikkerhedshul" msgid "numeric key detected" msgstr "numerisk tast opfanget" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Ikoner" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Tekst" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Begge" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Ingen steder" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Venstre" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Højre" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klik" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dobbelt-klik" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Slået fra" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Åben" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Lukket" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3970,7 +3963,7 @@ msgstr "Lukket" msgid "structure" msgstr "struktur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3980,7 +3973,7 @@ msgstr "struktur" msgid "data" msgstr "data" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3990,33 +3983,33 @@ msgstr "data" msgid "structure and data" msgstr "struktur og data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Hurtig - vis kun de mest nødvendige konfigurationsindstillinger" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Brugerdefineret - vis alle indstillinger til konfigurering" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" "Brugerdefineret - som ovenfor, men uden indstillinger for hurtig/" "brugerdefineret" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "komplette indsættelser" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "udvidede indsættelser" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "begge de ovenfor anførte" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ingen af de ovenfor anførte" @@ -6121,8 +6114,8 @@ msgstr "" "Hvis du har dit eger brugernavn, så angiv det her (standard [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Brugernavn" @@ -6531,7 +6524,7 @@ msgstr "Database(r):" msgid "Table(s):" msgstr "Tabel(ler):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rækker:" @@ -7149,7 +7142,7 @@ msgid "No data found for GIS visualization." msgstr "Ingen data fundet for GIS visualization." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerede ingen data (fx ingen rækker)." @@ -7268,11 +7261,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Viser SQL-forespørgsel" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Indsatte række id: %1$d" @@ -7317,7 +7310,7 @@ msgstr "Tilføj tabelpræfiks:" msgid "Add prefix" msgstr "Tilføj præfiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Er du sikker på at du vil udføre følgende forespørgsel?" @@ -7539,16 +7532,16 @@ msgid_plural "%s other results found" msgstr[0] "Fandt %s andet resultat" msgstr[1] "Fandt %s andre resultater" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrér databaser efter navn" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Ryd Hurtig/Fast-filter" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrér elementer efter navn" @@ -7645,17 +7638,17 @@ msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Kun strukturen" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur og data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Kun data" @@ -8070,13 +8063,13 @@ msgstr "Indsæt feltnavne i første række:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Vært:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Genereringstid:" @@ -8090,7 +8083,7 @@ msgstr "PHP-version:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Database:" @@ -8363,7 +8356,6 @@ msgstr "" "prøv igen." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Kunne ikke fortolke OpenDocument-regnearket!" @@ -9208,7 +9200,7 @@ msgstr "Attributter" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9371,7 +9363,7 @@ msgid "Library" msgstr "Bibliotek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9838,54 +9830,270 @@ msgstr "" "ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne" "%s før du fortsætter." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Den valgte bruger blev ikke fundet i privilegietabellen." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Du har tilføjet en ny bruger." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekund" +msgstr[1] "%d sekunder" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minutter" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logstatistik" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Valgt tidsinterval:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Vælg fra hvilken log, du ønsker statistikken genereret fra." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultaterne er grupperet af forespørgselstekst." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Forespørgselsanalysator" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitorinstruktioner" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin Monitor kan hjælpe dig med at optimere serverkonfigurationen og " +"afsløre tidskrævende forespørgsler. For sidstnævnte kræver det at log_output " +"sættes til 'TABLE' og at slow_query_log eller general_log aktiveres. Bemærk " +"dog, at general_log genererer en mængde data og forøger server load med op " +"til 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Uheldigvis understøtter din databaseserver ikke logning til tabel, som " +"kræves for at kunnne analysere databaselogs med phpMyAdmin. Logning til " +"tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " +"bruge funktionerne for serverdiagrammer." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Brug af monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Din browser vil opdatere alle viste diagrammer i et regelmæssigt interval. " +"Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " +"'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " +"cog på det relevante diagram." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"For at vise forespørgsler på logs så vælg det relevante tidsinterval på et " +"diagram ved at holde venstre museknap nede og flytte musen over diagrammet. " +"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." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Bemærk venligst:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Aktivering af general_log kan forøge server load med 5-15%. Vær også " +"opmærksom på, at statistikgenerering fra logs er en krævende opgave, så det " +"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." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Tilføj diagram" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Foruddefineret diagram" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Statusvariabel/-ble" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vælg serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Almindeligt overvåget" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "eller indtast variabelnavn:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Vis som forskelsværdi" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Anvend divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Tilføj enhed til dataværdier" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Tilføj denne serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Slet serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serier i diagram:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Start monitorering" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruktioner/Opsætning" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Færdig med at trække (flytte) rundt på diagrammer" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Aktivér mulighed for at trække rundt på diagrammer" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Opdateringsfrekvens" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagramkolonner" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagramopstilling" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " +"muligt at eksportere den, hvis man har en kompleks opstilling." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Gendan standardværdi" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Genereret af:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Detaljeret profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Rækkefølge" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Tilstand" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Opsummering efter tilstand" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Samlet tid" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% tid" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Kald" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø tid" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Lav bogmærke til denne SQL-forespørgsel" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etikette:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Lad alle brugere bruge dette bogmærke" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9904,10 +10112,6 @@ msgstr "Ryd" msgid "Bookmark this SQL query:" msgstr "Lav bogmærke til denne SQL-forespørgsel:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Lad alle brugere bruge dette bogmærke" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Erstat eksisterende bogmærke af samme navn" @@ -10048,7 +10252,7 @@ msgstr "Tjek tabeller der har overhead" msgid "Sort" msgstr "Sorter" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ingen" @@ -10131,7 +10335,6 @@ msgid "After %s" msgstr "Efter %s" #: libraries/structure.lib.php:1670 -#| msgid "Row Statistics" msgid "Row statistics" msgstr "Rækkestatistik" @@ -10203,7 +10406,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s er blevet ændret" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Forespørgselsfejl" @@ -10354,7 +10557,7 @@ msgstr "Fejl i ZIP arkiv:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Kritisk fejl: Navigationen kan kun tilgås via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" @@ -10410,7 +10613,7 @@ msgstr "Skift mellem små/store" msgid "Toggle relation lines" msgstr "Slå relationslinjer til eller fra" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importér/eksportér koordinater for PDF-opstilling" @@ -10468,39 +10671,39 @@ msgstr "Sammenstil" msgid "Active options" msgstr "Aktive indstillinger" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Side er blevet oprettet" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sideoprettelse fejlede" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Side:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importér fra valgt side" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Eksportér til valgte side" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Opret en side og eksportér til denne" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nyt sidenavn: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Eksportér/importér til skala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "anbefalet" @@ -10528,7 +10731,7 @@ msgstr "Intern relation tilføjet" msgid "Relation deleted" msgstr "Relation slettet" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fejl ved lagring af koordinater for Designer." @@ -10969,209 +11172,6 @@ msgstr "" "gangen, observere og teste din database og annullere ændringen, hvis der " "ingen klart synlig forskel var." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitorinstruktioner" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin Monitor kan hjælpe dig med at optimere serverkonfigurationen og " -"afsløre tidskrævende forespørgsler. For sidstnævnte kræver det at log_output " -"sættes til 'TABLE' og at slow_query_log eller general_log aktiveres. Bemærk " -"dog, at general_log genererer en mængde data og forøger server load med op " -"til 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Uheldigvis understøtter din databaseserver ikke logning til tabel, som " -"kræves for at kunnne analysere databaselogs med phpMyAdmin. Logning til " -"tabel understøttes af MySQL 5.1.6 og senere versioner. Man kan dog stadig " -"bruge funktionerne for serverdiagrammer." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Brug af monitor:" - -#: server_status_monitor.php:485 -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 "" -"Din browser vil opdatere alle viste diagrammer i et regelmæssigt interval. " -"Du kan tilføje diagrammer og ændre opdateringsfrekvensen under " -"'Indstillinger', eller fjerne hvilket som helst diagram ved at bruge ikonet " -"cog på det relevante diagram." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"For at vise forespørgsler på logs så vælg det relevante tidsinterval på et " -"diagram ved at holde venstre museknap nede og flytte musen over diagrammet. " -"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_monitor.php:501 -msgid "Please note:" -msgstr "Bemærk venligst:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Aktivering af general_log kan forøge server load med 5-15%. Vær også " -"opmærksom på, at statistikgenerering fra logs er en krævende opgave, så det " -"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_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Tilføj diagram" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Foruddefineret diagram" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Statusvariabel/-ble" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vælg serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Almindeligt overvåget" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "eller indtast variabelnavn:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Vis som forskelsværdi" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Anvend divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Tilføj enhed til dataværdier" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Tilføj denne serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Slet serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serier i diagram:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logstatistik" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Valgt tidsinterval:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hent kun SELECT,INSERT,UPDATE og DELETE forespørgsler" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Fjern variable data i INSERT forspørgsler for bedre gruppering" - -#: server_status_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultaterne er grupperet af forespørgselstekst." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Forespørgselsanalysator" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekund" -msgstr[1] "%d sekunder" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minutter" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Start monitorering" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruktioner/Opsætning" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Færdig med at trække (flytte) rundt på diagrammer" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Aktivér mulighed for at trække rundt på diagrammer" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Opdateringsfrekvens" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagramkolonner" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagramopstilling" - -#: server_status_monitor.php:736 -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 "" -"Opsætningen af diagrammerne er lagret i browserens lokale lager. Det er " -"muligt at eksportere den, hvis man har en kompleks opstilling." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Gendan standardværdi" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12267,28 +12267,25 @@ msgstr "Nøglen bør indeholde bogstaver, numre [em]og[/em] specialtegn." msgid "Wrong data" msgstr "Forkerte data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bruger bogmærket \"%s\" som standard-forespørgsel til gennemsyn." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bogmærke blev ikke oprettet" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Viser som PHP-kode" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Valideret SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format -#| msgid "" -#| "This table does not contain a unique column. Grid edit, checkbox, Edit, " -#| "Copy and Delete features are not available." msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." @@ -12296,19 +12293,11 @@ msgstr "" "Tabellen %s indeholder ikke en unik kolonne. Redigering af gitter, " "afkrydsningsfelt, redigering og sletning er ikke tilgængelige." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene på tabel `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Lav bogmærke til denne SQL-forespørgsel" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etikette:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Ingen data til visning" @@ -12384,6 +12373,10 @@ msgstr "X værdier" msgid "Y-Axis label:" msgstr "Y-akse betegnelse:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Startrække:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12514,31 +12507,31 @@ msgstr "Vælg kolonne til visning:" msgid "No column selected." msgstr "Der er ikke valgt kolonner." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Sporings rapport for tabel `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s blev oprettet, sporing af %2$s er aktiv." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sporing af %1$s blev deaktiveret i version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sporing af %1$s blev aktiveret i version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-sætninger udført." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12546,113 +12539,113 @@ msgstr "" "Du kan udføre eksporten ved at oprette og bruge en midlertidig database. " "Sørg venligst for at du har privilegier til at gøre det." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Udkommenter disse to linjer, hvis du ikke har brug for dem." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-sætninger eksporteres. Kopier venligst dump eller udfør den." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL kode)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Sporing af data definition slettet" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulerede sporingsdata slettet" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Sporingskommandoer" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %1$s med datoer fra %2$s til %3$s for brugeren %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Slet sporingsdatarække fra rapport" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Ingen data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Datadefinitionsudstryk" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Data manipuleringsudtryk" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-udtræk (hentning af fil)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Denne indstilling vil erstatte din tabel og dens indeholdte data." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-kørsel" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksportér som %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Vis versioner" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiver sporing af %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktiver nu" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktivér sporing af %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktivér nu" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Opret version %1$s af %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Spor disse datadefinitionskommandoer:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulations-forespørgsler:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Opret version" @@ -13958,6 +13951,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert er sat til 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Overskrifter for hver %s. række" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/de.po b/po/de.po index 31c5421403..67894ac8ee 100644 --- a/po/de.po +++ b/po/de.po @@ -3,9 +3,9 @@ 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: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-05-30 13:31+0200\n" -"Last-Translator: Michal Čihař \n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" +"PO-Revision-Date: 2013-06-19 12:38+0200\n" +"Last-Translator: Raimund Meyer \n" "Language-Team: German \n" "Language: de\n" @@ -41,13 +41,11 @@ msgstr "" "Zugriff aufgrund Ihrer Sicherheitseinstellungen." #: browse_foreigners.php:182 -#, fuzzy -#| msgid "Search" msgid "Search:" -msgstr "Suche" +msgstr "Suche:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,24 +71,24 @@ msgstr "Suche" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Schlüsselname" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beschreibung" @@ -109,7 +107,7 @@ msgstr "" "Die %s Datei steht auf diesem System nicht zur Verfügung. Bitte besuchen Sie " "www.phpmyadmin.net um nach weiteren Informationen zu suchen." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Die Datenbank %1$s wurde erzeugt." @@ -120,10 +118,8 @@ msgstr "Datenbankkommentar: " #: db_datadict.php:157 libraries/schema/Pdf_Relation_Schema.class.php:1336 #: libraries/tbl_columns_definition_form.inc.php:836 tbl_printview.php:120 -#, fuzzy -#| msgid "Table comments" msgid "Table comments:" -msgstr "Tabellen-Kommentar" +msgstr "Tabellenkommentar:" #: db_datadict.php:166 libraries/Index.class.php:565 #: libraries/TableSearch.class.php:183 libraries/TableSearch.class.php:1190 @@ -139,7 +135,7 @@ msgstr "Tabellen-Kommentar" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Spalte" @@ -162,7 +158,7 @@ msgstr "Spalte" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Typ" @@ -179,7 +175,7 @@ msgstr "Typ" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +190,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standard" @@ -236,9 +232,9 @@ msgstr "Kommentare" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nein" @@ -263,9 +259,9 @@ msgstr "Nein" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -317,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabelle" @@ -399,7 +395,7 @@ msgstr "Verfolgte Tabellen" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Datenbank" @@ -407,17 +403,17 @@ msgstr "Datenbank" msgid "Last version" msgstr "Letzte Version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Erstellt" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Aktualisiert" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -430,7 +426,7 @@ msgstr "Status" msgid "Action" msgstr "Aktion" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Zeige" @@ -439,18 +435,18 @@ msgid "Delete tracking data for this table" msgstr "Lösche die Verlaufsdaten dieser Tabelle" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Löschen" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiv" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "nicht aktiv" @@ -458,11 +454,11 @@ msgstr "nicht aktiv" msgid "Versions" msgstr "Versionen" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Verfolgungs-Bericht" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Struktur Schnapschuss" @@ -678,7 +674,7 @@ msgstr "" "Die Import-Plugins konnten nicht geladen werden, bitte überprüfen Sie Ihre " "phpMyAdmin-Installation!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bookmark %s wurde gespeichert" @@ -706,7 +702,7 @@ 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:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -937,7 +933,7 @@ msgstr "" "Der Server läuft mit Suhosin. Bitte lesen Sie die %sDokumentation%s wegen " "möglicher Probleme." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" - Anweisungen wurden deaktiviert." @@ -946,7 +942,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Sie sind dabei eine komplette Datenbank zu LÖSCHEN!" @@ -1030,8 +1026,8 @@ msgstr "Benutzerrechte werden neu geladen" msgid "Removing Selected Users" msgstr "Die ausgewählten Benutzer werden gelöscht" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Schließen" @@ -1159,13 +1155,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1204,7 +1200,7 @@ msgid "Traffic" msgstr "Netzwerkverkehr" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Einstellungen" @@ -1224,13 +1220,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "keine" @@ -1330,7 +1327,7 @@ msgstr "Einstellungen ändern" msgid "Current settings" msgstr "Aktuelle Einstellungen" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Schaubild-Titel" @@ -1420,7 +1417,7 @@ msgstr "Ausgabe erklären" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Zeit" @@ -1518,7 +1515,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importieren" @@ -1575,7 +1572,7 @@ msgid "Cancel" msgstr "Abbrechen" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laden" @@ -1727,10 +1724,10 @@ msgstr "SQL-Querybox ausblenden" msgid "Show query box" msgstr "SQL-Querybox anzeigen" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1740,7 +1737,7 @@ msgstr "Bearbeiten" msgid "No rows selected" msgstr "Es wurden keine Datensätze ausgewählt" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1827,7 +1824,7 @@ msgstr "Datenpunkt-Inhalt" msgid "Ignore" msgstr "Ignorieren" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopieren" @@ -1843,7 +1840,7 @@ msgstr "LineString" msgid "Polygon" msgstr "Polygon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometrie" @@ -2338,33 +2335,33 @@ msgstr "pro Stunde" msgid "per day" msgstr "pro Tag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Bestehende Konfigurationsdatei (%s) kann nicht gelesen werden." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Falsche Zugriffsrechte auf die Konfigurationsdatei. Schreibzugriff sollte " "nicht für alle möglich sein!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Schriftgröße" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Aufsteigend" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2383,7 +2380,7 @@ msgstr "Spalte" msgid "Sort:" msgstr "Sortierung" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2510,8 +2507,8 @@ msgstr[0] "%1$s Treffer in %2$s" msgstr[1] "%1$s Treffer in %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Anzeigen" @@ -2520,14 +2517,14 @@ msgstr "Anzeigen" msgid "Delete the matches for the %s table?" msgstr "Treffer für Tabelle %s löschen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Löschen" @@ -2589,45 +2586,34 @@ msgctxt "Last page" msgid "End" msgstr "Ende" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Anfangs-Datensatz" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Anzahl der Datensätze:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Art und Weise" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "untereinander" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (gedrehte Kopfzeilen)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "nebeneinander" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Kopfzeilen alle %s Zeilen" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Nach Schlüssel sortieren" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2654,70 +2640,70 @@ msgstr "Nach Schlüssel sortieren" msgid "Options" msgstr "Optionen" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Gekürzte Texte" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Vollständige Texte" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relationaler Schlüssel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relationale Anzeigespalte" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Binäre Inhalte anzeigen" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB Inhalte anzeigen" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Binäre Inhalte in hexadezimal anzeigen" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Darstellungsumwandlung ausblenden" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Bekannter Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Bekanntes Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Der Datensatz wurde gelöscht" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Beenden" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" "Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "in der Abfrage" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2726,23 +2712,23 @@ msgstr "" "Dieser Ansicht hat mindestens diese Anzahl von Datensätzen. Bitte lesen Sie " "die %sDokumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Zeige Datensätze" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 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:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Die Abfrage dauerte %01.4f Sekunden" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2751,8 +2737,8 @@ msgstr "Die Abfrage dauerte %01.4f Sekunden" msgid "With selected:" msgstr "markierte:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2763,45 +2749,45 @@ msgstr "markierte:" msgid "Check All" msgstr "Alle auswählen" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportieren" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Erzeuge View" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operationen für das Abfrageergebnis" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Druckansicht" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Druckansicht (vollständige Textfelder)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Diagramm anzeigen" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualisiere GIS Daten" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Der Verweis wurde nicht gefunden" @@ -2882,38 +2868,38 @@ msgstr "Kein Index definiert!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indizes" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Gepackt" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalität" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Kollation" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2948,14 +2934,14 @@ msgstr "Ansicht" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2968,12 +2954,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Suche" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Einfügen" @@ -3100,15 +3086,15 @@ msgstr[1] "%1$d Datensätze eingefügt." msgid "Error while creating PDF:" msgstr "Fehler beim Erstellen der PDF Datei:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Konnte die letzte Tabelle nicht speichern" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Letzte Tabellen" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Es gibt keine letzten Tabellen" @@ -3353,7 +3339,7 @@ msgid "Maximum rows to plot" msgstr "Maximale Anzahl der darzustellenden Datensätze" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Fremdschlüsselwerte ansehen" @@ -3765,7 +3751,7 @@ msgstr "Eine Aufzählung, gewählt aus der Liste definierter Werte" msgid "Max: %s%s" msgstr "Maximal: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3826,7 +3812,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Messen" @@ -3866,49 +3852,49 @@ msgstr "" msgid "Click to toggle" msgstr "Zum Umschalten anklicken" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Durchsuchen Sie Ihren Computer:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wählen Sie vom Webserver-Uploadverzeichnis %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Auf das festgelegte Upload-Verzeichnis kann nicht zugegriffen werden" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Es sind keine Dateien zum Upload vorhanden" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Leeren" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Ausführen" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Drucken" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Erzeugt am" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Aktualisiert am" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Letzter Check am" @@ -4029,58 +4015,58 @@ msgstr "Mögliche Ausnutzung" msgid "numeric key detected" msgstr "Numerischer Schlüssel entdeckt" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Einf" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Test" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Beide" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nirgends" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Links" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Rechts" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klick" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Doppelklick" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Deaktiviert" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Geöffnet" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Geschlossen" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4090,7 +4076,7 @@ msgstr "Geschlossen" msgid "structure" msgstr "Struktur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4100,7 +4086,7 @@ msgstr "Struktur" msgid "data" msgstr "Daten" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4110,31 +4096,31 @@ msgstr "Daten" msgid "structure and data" msgstr "Struktur und Daten" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Schnell – Zeige nur die minimalen Konfigurationsoptionen" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Angepasst – Zeige alle möglichen Konfigurationsoptionen" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Angepasst – Wie oben, aber ohne die Schnell-/Angepasst-Auswahl" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "Vollständige INSERTs" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "Erweiterte INSERTs" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "Beide der Obigen" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "Keines der Obigen" @@ -6279,8 +6265,8 @@ msgstr "" "Falls Sie einen benutzerdefinierten Benutzernamen haben, hier angeben " "(Standard ist [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Benutzername" @@ -6703,7 +6689,7 @@ msgstr "Datenbank(en):" msgid "Table(s):" msgstr "Tabelle(n):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Datensätze:" @@ -7330,7 +7316,7 @@ msgid "No data found for GIS visualization." msgstr "Keine Daten für die GIS-Darstellung gefunden." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Datensätze)." @@ -7455,11 +7441,11 @@ msgstr "" "Mittels TAB-Taste von Feld zu Feld springen, oder mit STRG+Pfeiltasten " "beliebig bewegen" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Ansicht als SQL Abfrage" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID der eingefügten Zeile: %1$d" @@ -7510,7 +7496,7 @@ msgstr "Tabellen-Prefix hinzufügen" msgid "Add prefix" msgstr "Prefix hinzufügen" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Möchten Sie die folgende Abfrage wirklich ausführen?" @@ -7732,16 +7718,16 @@ msgid_plural "%s other results found" msgstr[0] "%s weiteres Ergebnis gefunden" msgstr[1] "%s weitere Ergebnisse gefunden" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "Datenbanken nach Namen filtern" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Schnellfilter löschen" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "Nach Name filtern" @@ -7841,17 +7827,17 @@ msgid "Drop the database (DROP)" msgstr "Datenbank löschen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Nur Struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur und Daten" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Nur Daten" @@ -8282,7 +8268,7 @@ msgstr "Spaltennamen in die erste Zeile setzen" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8290,7 +8276,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8308,7 +8294,7 @@ msgstr "PHP-Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9481,7 +9467,7 @@ msgstr "Attribute" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9646,7 +9632,7 @@ msgid "Library" msgstr "Bibliothek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -10124,71 +10110,299 @@ msgstr "" "Änderungen vorgenommen wurden. In diesem Fall sollten Sie %sdie " "Benutzerprofile neu laden%s bevor Sie fortfahren." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Der Benutzer wurde hinzugefügt." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d Sekunde" +msgstr[1] "%d Sekunden" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d Minute" +msgstr[1] "%d Minuten" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Protokoll Statistik" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Ausgewählte Zeit-Spanne:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Lösche Variablen-Werte in INSERT Abfragen um die Gruppierung zu verbessern" + +#: libraries/server_status_monitor.lib.php:111 +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." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Query Analyzer" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Einführung zur Überwachung" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Die phpMyAdmin-Überwachung kann Sie bei der Server-Konfiguration, und auch " +"beim Aufspühren von zeitintensiven Abfragen unterstützen. Für Letzteres " +"müssen Sie log_output auf 'TABLE' stellen und entweder slow_query_log oder " +"general_log aktivieren. Beachten Sie aber, dass das Aktivieren der " +"general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " +"erhöhen kann." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Leider unterstützt Ihr Datenbank-Servers keine Protokollierung in eine " +"Tabelle. Dies ist eine Voraussetzung für die Analyse der Datenbankprotokolle " +"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." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Verwendung der Überwachung:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Ihr Browser wird in regelmäßigen Intervallen alle angezeigten Diagramme " +"aktualisieren. Unter 'Einstellungen' können Sie Diagramme hinzufügen und das " +"Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " +"das Zahnrad-Icon des entsprechenden Schaubilds verwenden." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Um Abfragen aus den Logs anzuzeigen, wählen Sie die relevante Zeitspanne in " +"einem Diagramm durch Drücken der linken Maustaste und markieren Sie einen " +"Bereich des Diagramms durch Ziehen. Dadurch wird eine Tabelle von " +"gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " +"um diese weiter zu analysieren." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Bitte beachten Sie:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Das Aktivieren des general_log kann die Serverlast um 5-15% steigern. Seien " +"Sie sich bewusst, dass das Erzeugen von Statistiken aus den Logs ein sehr " +"aufwändiger Prozess ist. Deshalb ist es ratsam, nur einen kleinen Zeitraum " +"auszuwählen und die gerneral_log nach der Überwachung wieder zu deaktivieren." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Schaubild hinzufügen" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Vordefiniertes Diagramm" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Status Variable(n)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Serie auswählen:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Allgemein-überwacht" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "oder Variablen-Namen eingeben:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Den Wert als Unterschied zeigen" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Divisor hinzufügen" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Einheiten an Datenwerte anfügen" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Diese Serie hinzufügen" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Serien löschen" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serien im Schaubild:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Überwachung starten" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Einführung/Einrichtung" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Umordnen/bearbeiten der Schaubilder beendet" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Hervorhebung ermöglichen" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Aktualisierungs-Intervall" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Schaubild-Spalten" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Schaubild-Anordnung" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Die Anordnungen der Schaubilder werden im Browser Local-Storage gespeichert. " +"Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " +"eingerichtet haben." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Zurücksetzen" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-Abfrageergebnis" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Erstellt von" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Dateiwachstumsgröße" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Weitere" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Start" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Gesamt Zeit:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Zeit" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Schließen" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Zeit" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "SQL-Abfrage speichern" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Titel" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10209,10 +10423,6 @@ msgstr "Werte löschen" msgid "Bookmark this SQL query:" msgstr "SQL-Abfrage speichern" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Überschreibe gleichnamiges Bookmark" @@ -10355,7 +10565,7 @@ msgstr "Tabellen mit Überhang auswählen" msgid "Sort" msgstr "Sortierung" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "kein(e)" @@ -10511,7 +10721,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Die Tabelle %1$s wurde erfolgreich geändert" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Abfrage-Fehler" @@ -10669,7 +10879,7 @@ msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Schwerer Fehler: Auf die Navigation kann nur mit AJAX zugegriffen werden" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Änderungen gespeichert" @@ -10725,7 +10935,7 @@ msgstr "Wechseln klein/groß" msgid "Toggle relation lines" msgstr "Beziehungen anzeigen an/aus" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export Koordinaten für das PDF Schema" @@ -10785,43 +10995,43 @@ msgstr "Anlegen" msgid "Active options" msgstr "Aktive Optionen" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Seite wurde erstellt" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Seitenerstellung fehlgeschlagen" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Seite" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import von ausgewählter Seite" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Export zu der ausgewählten Seite" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Eine Seite anlegen und dahin exportieren" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Name der neuen Seite: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Export/Import skalieren" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "empfohlen" @@ -10851,7 +11061,7 @@ msgstr "Interne Verknüpfung hinzugefügt" msgid "Relation deleted" msgstr "Verknüpfung gelöscht" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fehler beim speichern der Koordinaten für den Designer." @@ -11308,219 +11518,6 @@ msgstr "" "einmal zu ändern, die Leistungsfähigkeit der Datenbank zu testen und die " "Änderungen zurückzunehmen, falls es keine klar messbaren Verbesserungen gab." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Einführung zur Überwachung" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Die phpMyAdmin-Überwachung kann Sie bei der Server-Konfiguration, und auch " -"beim Aufspühren von zeitintensiven Abfragen unterstützen. Für Letzteres " -"müssen Sie log_output auf 'TABLE' stellen und entweder slow_query_log oder " -"general_log aktivieren. Beachten Sie aber, dass das Aktivieren der " -"general_log viele Daten produzieren und die Serverauslastung um bis zu 15% " -"erhöhen kann." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Leider unterstützt Ihr Datenbank-Servers keine Protokollierung in eine " -"Tabelle. Dies ist eine Voraussetzung für die Analyse der Datenbankprotokolle " -"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_monitor.php:482 -msgid "Using the monitor:" -msgstr "Verwendung der Überwachung:" - -#: server_status_monitor.php:485 -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 "" -"Ihr Browser wird in regelmäßigen Intervallen alle angezeigten Diagramme " -"aktualisieren. Unter 'Einstellungen' können Sie Diagramme hinzufügen und das " -"Aktualisierungsintervall ändern oder beliebige Diagramme entfernen, wenn Sie " -"das Zahnrad-Icon des entsprechenden Schaubilds verwenden." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Um Abfragen aus den Logs anzuzeigen, wählen Sie die relevante Zeitspanne in " -"einem Diagramm durch Drücken der linken Maustaste und markieren Sie einen " -"Bereich des Diagramms durch Ziehen. Dadurch wird eine Tabelle von " -"gruppierten Abfragen geladen. Sie können auf jedes SELECT Anweisung klicken, " -"um diese weiter zu analysieren." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Bitte beachten Sie:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Das Aktivieren des general_log kann die Serverlast um 5-15% steigern. Seien " -"Sie sich bewusst, dass das Erzeugen von Statistiken aus den Logs ein sehr " -"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_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Schaubild hinzufügen" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Vordefiniertes Diagramm" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Status Variable(n)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Serie auswählen:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Allgemein-überwacht" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "oder Variablen-Namen eingeben:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Den Wert als Unterschied zeigen" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Divisor hinzufügen" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Einheiten an Datenwerte anfügen" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Diese Serie hinzufügen" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Serien löschen" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serien im Schaubild:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Protokoll Statistik" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Ausgewählte Zeit-Spanne:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Rufe nur SELECT, INSERT, UPDATE und DELETE Abfragen ab" - -#: server_status_monitor.php:596 -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_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Ergebnisse sind nach Abfrage-Text zusammengefasst." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Query Analyzer" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d Sekunde" -msgstr[1] "%d Sekunden" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d Minute" -msgstr[1] "%d Minuten" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Überwachung starten" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Einführung/Einrichtung" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Umordnen/bearbeiten der Schaubilder beendet" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Hervorhebung ermöglichen" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Aktualisierungs-Intervall" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Schaubild-Spalten" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Schaubild-Anordnung" - -#: server_status_monitor.php:736 -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 "" -"Die Anordnungen der Schaubilder werden im Browser Local-Storage gespeichert. " -"Es empfiehlt sich dieses zu exportieren, wenn Sie eine aufwändige Anordnung " -"eingerichtet haben." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Zurücksetzen" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12660,24 +12657,24 @@ msgstr "" msgid "Wrong data" msgstr "Fehlerhafte Daten" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Lesezeichen \"%s\" wird als Standard-Anzeigeabfrage verwendet." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bookmark nicht erstellt" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Ansicht als PHP-Code" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Geprüftes SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12690,21 +12687,11 @@ msgstr "" "Bearbeitungsfunktion, Kontrollkästchen, Bearbeiten, Kopieren und Löschen von " "Links sind nicht verfügbar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Warnungen bei den Indizes der Tabelle `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "SQL-Abfrage speichern" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Titel" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Keine Daten zum Anzeigen" @@ -12781,6 +12768,12 @@ msgstr "X-Werte" msgid "Y-Axis label:" msgstr "Beschriftung Y-Achse:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Anfangs-Datensatz" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12923,31 +12916,31 @@ msgstr "Anzuzeigende Spalte auswählen" msgid "No column selected." msgstr "Es wurden keine Datensätze ausgewählt" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Verlaufs-Report für Tabelle %s" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s wurde erstellt, Tracking von %2$s ist aktiviert." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s deaktiviert." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Verlaufs-Report für %1$s wurde bei Version %2$s aktiviert." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL Befehle ausgeführt." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12956,114 +12949,114 @@ msgstr "" "Datenbank realisieren. Bitte stellen Sie sicher, dass Sie die dafür " "benötigten Rechte besitzen." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" "Kommentieren Sie diese beiden Zeilen aus, wenn Sie diese nicht benötigen." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL Befehle exportiert." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s Schnappschuss (SQL code)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Verfolgungsdatendefinition erfolgreich gelöscht" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Verfolgungsdatenmanipulation erfolgreich gelöscht" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Befehle verfolgen" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Zeige %1$s mit Datum von %2$s bis %3$s und Benutzer %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Lösche die Verlaufsdaten des Datensatzes" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Keine Daten" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "DDL Befehl" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "DML Befehl" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL Dump (Datei Download)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL Dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Diese Option ersetzt Ihre Tabelle und enthaltene Daten." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL Ausführung" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Export als %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Versionen anzeigen" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Verlaufs-Report für %s deaktivieren" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Jetzt deaktivieren" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Verlaufs-Report für %s aktivieren" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Jetzt aktivieren" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Version %1$s von %2$s erzeugen" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Diese Datenbeschreibungsbefehle (DDL) verfolgen:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Diese Datenbearbeitungsbefehle (DML) verfolgen:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Erzeuge Version" @@ -14409,6 +14402,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ist auf 0 gesetzt" +#~ msgid "Headers every %s rows" +#~ msgstr "Kopfzeilen alle %s Zeilen" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/el.po b/po/el.po index 9a4fcb8ec2..ebb8adfe52 100644 --- a/po/el.po +++ b/po/el.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-12 09:36+0200\n" "Last-Translator: Panagiotis Papazoglou \n" "Language-Team: Greek \n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "Αναζήτηση:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -70,24 +70,24 @@ msgstr "Αναζήτηση:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Εκτέλεση" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Όνομα κλειδιού" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Περιγραφή" @@ -106,7 +106,7 @@ msgstr "" "Το αρχείο %s δεν είναι διαθέσιμο σε αυτό το σύστημα, για αυτό επισκεφτείτε " "το www.phpmyadmin.net για περισσότερες πληροφορίες." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s." @@ -134,7 +134,7 @@ msgstr "Σχόλια πίνακα:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Στήλη" @@ -157,7 +157,7 @@ msgstr "Στήλη" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Τύπος" @@ -174,7 +174,7 @@ msgstr "Τύπος" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Κενό" @@ -189,7 +189,7 @@ msgstr "Κενό" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Προεπιλογή" @@ -231,9 +231,9 @@ msgstr "Σχόλια" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Όχι" @@ -258,9 +258,9 @@ msgstr "Όχι" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ναι" @@ -312,7 +312,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Πίνακας" @@ -388,7 +388,7 @@ msgstr "Παρακολουθούμενοι πίνακες" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Βάση" @@ -396,17 +396,17 @@ msgstr "Βάση" msgid "Last version" msgstr "Τελευταία έκδοση" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Δημιουργήθηκε" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Ενημερώθηκε" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Κατάσταση" @@ -419,7 +419,7 @@ msgstr "Κατάσταση" msgid "Action" msgstr "Ενέργεια" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Εμφάνιση" @@ -428,18 +428,18 @@ msgid "Delete tracking data for this table" msgstr "Διαγραφή δεδομένων παρακολούθησης για αυτόν τον πίνακα" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Διαγραφή" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ενεργή" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "μη ενεργή" @@ -447,11 +447,11 @@ msgstr "μη ενεργή" msgid "Versions" msgstr "Εκδόσεις" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Αναφορά παρακολούθησης" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Στιγμιότυπο δομής" @@ -651,7 +651,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Αδύνατη η φόρτωση προσθέτων εισαγωγής, για αυτό ελέξτε την εγκατάστασή σας!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Ο σελιδοδείκτης %s δημιουργήθηκε" @@ -678,7 +678,7 @@ msgstr "" "σημαίνει ότι το phpMyAdmin δεν θα μπορέσει να τελειώσει την εισαγωγή εκτός " "και αν αυξήσετε τα χρονικά όρια της php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -891,7 +891,7 @@ msgstr "" "Ο διακομιστής εκτελείται με Suhosin. Αναφερθείτε στην %sτεκμηρίωση%s για " "πιθανά ζητήματα." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποιηθεί." @@ -900,7 +900,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Do you really want to execute \"%s\"?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο το «%s»;" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Πρόκειται να DESTROY μια ολόκληρη βάση δεδομένων!" @@ -984,8 +984,8 @@ msgstr "Επαναφόρτωση δικαιωμάτων" msgid "Removing Selected Users" msgstr "Διαγραφή των επιλεγμένων χρηστών" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Κλείσιμο" @@ -1112,13 +1112,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1157,7 +1157,7 @@ msgid "Traffic" msgstr "Κίνηση" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Ρυθμίσεις" @@ -1177,13 +1177,14 @@ msgstr "Προσθήκη διαγράμματος στο πλέγμα" msgid "Please add at least one variable to the series" msgstr "Εισάγετε τουλάχιστον μια μεταβλητή στις σειρές" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Καμία" @@ -1285,7 +1286,7 @@ msgstr "Αλλαγή ρυθμίσεων" msgid "Current settings" msgstr "Τρέχουσες ρυθμίσεις" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Τίτλος Διαγράμματος" @@ -1374,7 +1375,7 @@ msgstr "Επεξήγηση προϊόντος" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Χρόνος" @@ -1473,7 +1474,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Εισαγωγή" @@ -1530,7 +1531,7 @@ msgid "Cancel" msgstr "Άκυρο" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Φόρτωση" @@ -1679,10 +1680,10 @@ msgstr "Απόκρυψη παραθύρου ερωτήματος" msgid "Show query box" msgstr "Προβολή παραθύρου ερωτήματος" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1692,7 +1693,7 @@ msgstr "Επεξεργασία" msgid "No rows selected" msgstr "Δεν επιλέχθηκαν γραμμές" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1779,7 +1780,7 @@ msgstr "Περιεχόμενο δείκτη δεδομένων" msgid "Ignore" msgstr "Παράληψη" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Αντιγραφή" @@ -1795,7 +1796,7 @@ msgstr "Κείμενο γραμμής" msgid "Polygon" msgstr "Πολύγωνο" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Γεωμετρία" @@ -2281,33 +2282,33 @@ msgstr "ανά ώρα" msgid "per day" msgstr "ανά ημέρα" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Το υπαρχον αρχείο ρυθμίσεων (%s) δεν είναι αναγνώσιμο." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Εσφαλμένα δικαιώματα στο αρχείο ρυθμίσεων, δεν πρέπει να είναι καθολικά " "εγγράψιμο!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Μέγεθος γραμματοσειράς" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Αύξουσα" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2322,7 +2323,7 @@ msgstr "Στήλη:" msgid "Sort:" msgstr "Ταξινόμηση:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Εμφάνιση:" @@ -2439,8 +2440,8 @@ msgstr[0] "%1$s απατέλεσμα στο %2$s" msgstr[1] "%1$s αποτελέσματα στο %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Περιήγηση" @@ -2449,14 +2450,14 @@ msgstr "Περιήγηση" msgid "Delete the matches for the %s table?" msgstr "Διαγραφή παρόμοιων αποτελεσμάτων για τον πίνακα %s;" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Διαγραφή" @@ -2518,41 +2519,32 @@ msgctxt "Last page" msgid "End" msgstr "Τέλος" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Εγγραφή έναρξης:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Αριθμός εγγραφών:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Μορφή:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "οριζόντια" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "οριζόντια (στραμμένες επικεφαλίδες)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "κάθετη" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Κεφαλίδες κάθε %s εγγραφές" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Ταξινόμηση ανά κλειδί" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2579,68 +2571,68 @@ msgstr "Ταξινόμηση ανά κλειδί" msgid "Options" msgstr "Επιλογές" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Περιληπτικά κείμενα" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Πλήρη κείμενα" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Κλειδί συσχέτισης" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Στήλη προβολής συσχέτισης" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Εμφάνιση δυαδικών περιεχομένων" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Εμφάνιση περιεχομένων BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Εμφάνιση δυαδικών περιεχομένων ως Δεκαεξαδικά HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Απόκρυψη μετατροπής περιηγητή" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Καλά Γνωστό Κείμενο" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Καλά Γνωστό Δυαδικό" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Η εγγραφή έχει διαγραφεί" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Τερματισμός" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Ίσως είναι κατά προσέγγιση. Δείτε τις [doc@faq3-11]ΣΑΕ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "στην εντολή" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2649,21 +2641,21 @@ msgstr "" "Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην " "%sτεκμηρίωση%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Εμφάνιση εγγραφών" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "συνολικά" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2672,8 +2664,8 @@ msgstr "Το ερώτημα χρειάστηκε %01.4f δευτερόλεπτα msgid "With selected:" msgstr "Με τους επιλεγμένους:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2684,45 +2676,45 @@ msgstr "Με τους επιλεγμένους:" msgid "Check All" msgstr "Επιλογή όλων" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Εξαγωγή" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Δημιουργία προβολής" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Λειτουργίες αποτελεσμάτων ερωτήματος" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Εμφάνιση για εκτύπωση" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Προβολή εκτύπωσης (με πλήρη κείμενα)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Εμφάνιση διαγράμματος" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Οπτικοποίηση δεδομένων GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Δεν βρέθηκε η σύνδεση" @@ -2803,38 +2795,38 @@ msgstr "Δεν ορίστηκε ευρετήριο!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Ευρετήρια" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Μοναδικό" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Συμπιεσμένο" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Μοναδικότητα" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Σύνθεση" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Σχόλιο" @@ -2869,14 +2861,14 @@ msgstr "Προβολή" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Δομή" @@ -2889,12 +2881,12 @@ msgstr "Κώδικας SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Αναζήτηση" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Προσθήκη" @@ -3021,15 +3013,15 @@ msgstr[1] "Εισήχθηκαν %1$d γραμμές." msgid "Error while creating PDF:" msgstr "Σφάλμα κατά τη δημιουργία του PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Πρόσφατοι πίνακες" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Δεν υπάρχουν πρόσφατοι πίνακες" @@ -3272,7 +3264,7 @@ msgid "Maximum rows to plot" msgstr "Μέγιστος αριθμός γραμμών για εκτύπωση" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Αναζήτηση μη διακριτών τιμών" @@ -3680,7 +3672,7 @@ msgstr "Μια απαρίθμηση, η οποία έχει επιλεγεί α msgid "Max: %s%s" msgstr "Μέγιστο μέγεθος: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Εντολή SQL:" @@ -3739,7 +3731,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Εσωτερικό" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Δημιουργία προφίλ" @@ -3779,50 +3771,50 @@ msgstr "" msgid "Click to toggle" msgstr "Πατήστε για εναλλαγή" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Περιηγηθείτε στον υπολογιστή σας:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Επιλογή από το φάκελο αποστολής του διακομίστή ιστού %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" "Ο υποκατάλογος που ορίσατε για την αποθήκευση αρχείων δεν μπόρεσε να βρεθεί" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Δεν υπάρχουν αρχεία προς αποστολή" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Άδειασμα" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Εκτέλεση" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Εκτύπωση" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Δημιουργία" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Τελευταία ενημέρωση" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Tελευταίος έλεγχος" @@ -3942,54 +3934,54 @@ msgstr "δυνατή αξιοποίηση" msgid "numeric key detected" msgstr "ανιχνεύτηκε αριθμητικό κλειδί" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Εικονίδια" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Κείμενο" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Και τα δύο" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Πουθενά" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Αριστερά" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Δεξιά" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Πάτημα" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Διπλό πάτημα" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Απενεργοποιημένη" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Άνοιγμα" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Κλεισμένο" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3999,7 +3991,7 @@ msgstr "Κλεισμένο" msgid "structure" msgstr "δομή" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4009,7 +4001,7 @@ msgstr "δομή" msgid "data" msgstr "δεδομένα" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4019,32 +4011,32 @@ msgstr "δεδομένα" msgid "structure and data" msgstr "δομή και δεδομένα" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" "Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "πλήρεις εντολές Insert" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "εκτεταμένες εντολές Insert" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "αμφότερα τα παραπάνω" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "κανένα από τα παραπάνω" @@ -6183,8 +6175,8 @@ msgstr "" "Αν έχετε ένα προσαρμοσμένο όνομα χρήστη, ορίστε το εδώ (προεπιλογή:" "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Όνομα χρήστη" @@ -6603,7 +6595,7 @@ msgstr "Βάση(εις) δεδομένων:" msgid "Table(s):" msgstr "Πίνακας(ες):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Εγγραφές:" @@ -7234,7 +7226,7 @@ msgid "No data found for GIS visualization." msgstr "Δεν βρέθηκαν δεδομένα για την οπτικοποίηση GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" "Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)." @@ -7354,11 +7346,11 @@ msgstr "" "Χρήση του πλήκτρου TAB για μετακίνηση από τιμή σε τιμή ή CTRL+βέλη για " "μετακίνηση παντού" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Εμφάνιση ερωτήματος SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Ταυτότητα εισερχόμενης εγγραφής: %1$d" @@ -7403,7 +7395,7 @@ msgstr "Προσθήκη προθέματος πίνακα:" msgid "Add prefix" msgstr "Προσθήκη προθέματος" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Θέλετε να εκτελέσετε το ακόλουθο ερώτημα;" @@ -7625,16 +7617,16 @@ msgid_plural "%s other results found" msgstr[0] "%s άλλο αποτέλεσμα βρέθηκε" msgstr[1] "%s άλλα αποτελέσματα βρέθηκαν" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "φιλτράρισμα βάσεων δεδομενων κατά όνομα" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Εκκαθάριση Γρήγορου Φίλτρου" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "φιλτράρισμα αντικειμένων κατά όνομα" @@ -7730,17 +7722,17 @@ msgid "Drop the database (DROP)" msgstr "Διαγραφή της βάση δεδομένων (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Μόνο η δομή" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Δομή και δεδομένα" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Μόνο τα δεδομένα" @@ -8157,13 +8149,13 @@ msgstr "Εμφάνιση ονομάτων στηλών στην πρώτη γρ #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Φιλοξενητής:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Χρόνος δημιουργίας:" @@ -8177,7 +8169,7 @@ msgstr "Έκδοση PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Βάση δεδομένων:" @@ -9313,7 +9305,7 @@ msgstr "Χαρακτηριστικά" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Πρόσθετα" @@ -9476,7 +9468,7 @@ msgid "Library" msgstr "Βιβλιοθήκη" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Έκδοση" @@ -9951,54 +9943,277 @@ msgstr "" "αλλαγές χειροκίνητα. Σε αυτήν την περίπτωση, θα πρέπει να %sεπαναφορτώσετε " "τα δικαιώματα%s πριν συνεχίσετε." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Ο επιλεγμένος χρήστης δεν βρέθηκε στον πίνακα δικαιωμάτων." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Προσθέσατε ένα νέο χρήστη." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d δευτερόλεπτο" +msgstr[1] "%d δευτερόλεπτο" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d λεπτά" +msgstr[1] "%d λεπτά" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Στατιστικά καταγραφών" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Επιλεγμένο εύρος χρόνου:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " +"ομαδοποιήση" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Αναλυτής ερωτήματος" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Οδηγίες Εποπτείας" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " +"του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " +"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει " +"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " +"παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " +"15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Δυστυχώς ο διακομιστής βάσεων δεδομένων σας δεν υποστηρίζει καταγραφή σε " +"πίνακα, κάτι που είναι προαπαιτούμενο για την ανάλυση των καταγραφών βάσεων " +"δεδομένων με το phpMyAdmin. Η καταγραφή σε πίνακα υποστηρίζεται από την " +"MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " +"χαρακτηριστικά διαγραμμάτων του διακομιστή." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Χρήση της εποπτείας:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Ο φυλλομετρητής σας θα ανανεώσει όλα τα εμφανιζόμενα διαγράμματα ανά " +"ορισμένο διάστημα. Μπορείτε να προσθέσετε διαγράμματα και να αλλάξετε το " +"ρυθμό ανανέωσης στη «Ρυθμίσεις», ή να απομακρύνεται οποιοδήποτε διάγραμμα " +"χρηισιμποιώντας το εικονίδιο διαγραφής στο αντίστοιχο διάγραμμα." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Για να προβάλετε ερωτήματα από τις καταγραφές, επιλέξτε το αντίστοιχο " +"χρονικό εύρος σε οποιοδήποτε διάγραμμα έχοντας πατημένο το πλήκτρο το " +"ποντικιού και σαρώνοντας την επιφάνεια του διαγράμματος. Μόλις το " +"επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " +"μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Σημειώστε:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Η ενεργοποίηση του general_log μπορεί να αυξήσει τη φόρτωση του διακομιστή " +"κατά 10-15%. Επίσης, έχετε υπόψη ότι η δημιουργία στατιστικών από τις " +"καταγραφές είναι μια εργασία με υψηλές απαιτήσεις σε πόρους, για αυτό σας " +"προτείνουμε να επιλέξετε μόνο ένα μικρό χρονικό διάστημα και να " +"απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " +"είναι απαραίτητη η εποπτεία." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Προσθήκη διαγράμματος" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Προκαθορισμός διαγράμματος" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Μεταβλητή(ές) κατάστασης" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Επιλογή σειρών:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Συχνά εποπτευόμενα" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ή όνομα τύπου μεταβλητής:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Προβολή ως διαφορική τιμή" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Εφαρμογή διαιρέτη" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Προσθήκη αυτής της σειράς" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Εκκαθάριση σειράς" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Σειρά σε Διάγραμμα:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Έναρξη Εποπτείας" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Οδηγίες/Εγκατάσταση" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Ολοκληρώθηκε η μετακίνηση (επανατοποθέτηση) διαγραμμάτων" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Ενεργοποίηση μετακίνησης διαγραμμάτων" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Ρυθμός ανανέωσης" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Στήλες διαγράμματος" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Διευθέτηση διαγράμματος" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Η διευθέτηση των διαγραμμάτων αποθηκεύεται στον τοπικό χώρο αποθήκευσης των " +"φυλλομετρητών. Ίσως θέλετε να το εξάγετε αν έχετε πολύπλοκη ρύθμιση." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Επαναφορά προεπιλογής" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "αποτέλεσμα SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Δημιουργήθηκε από:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Λεπτομερές προφίλ" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Ταξινόμηση" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Κατάσταση" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Περίληψη ανά κατάσταση" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Συνολικός Χρόνος" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Χρόνος" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Κλήσεις" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø Χρόνος" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Αποθήκευση αυτού του ερωτήματος SQL" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Ετικέτα:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10017,10 +10232,6 @@ msgstr "Καθάρισμα" msgid "Bookmark this SQL query:" msgstr "Αποθήκευση αυτού του ερωτήματος SQL:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα" @@ -10160,7 +10371,7 @@ msgstr "Επιλογή πινάκων με περίσσεια" msgid "Sort" msgstr "Ταξινόμηση" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Καμία" @@ -10314,7 +10525,7 @@ msgstr "Αποτελεσματικός" msgid "Table %1$s has been altered successfully" msgstr "Ο πίνακας %1$s αλλάχτηκε επιτυχώς" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Σφάλμα ερωτήματος" @@ -10465,7 +10676,7 @@ msgstr "Σφάλμα στο συμπιεσμένο αρχείο ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Κρίσιμο σφάλμα: Η πλοήγηση μπορεί να προσπελαστεί μέσω AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" @@ -10521,7 +10732,7 @@ msgstr "Εναλλαγή μικρά/μεγάλα" msgid "Toggle relation lines" msgstr "Εναλλαγή γραμμών συσχέτισης" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Εισαγωγή/Εξαγωγή συντεταγμένων για σχέδιο PDF" @@ -10579,39 +10790,39 @@ msgstr "Άθροιση" msgid "Active options" msgstr "Ενεργές επιλογές" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Η σελίδα δημιουργήθηκε" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Η δημιουργία σελίδας απέτυχε" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Σελίδα:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Εισαγωγή από επιλεγμένη σελίδα" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Εξαγωγή σε επιλεγμένη σελίδα" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Δημιουργία μιας σελίδας και εξαγωγή σε αυτή" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Νέο όνομα σελίδα: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Εξαγωγή/Εισαγωγή σε κλίμακα:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "προτείνεται" @@ -10639,7 +10850,7 @@ msgstr "Η εσωτερική συσχέτιση προστέθηκε" msgid "Relation deleted" msgstr "Η συσχέτιση διαγράφηκε" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Σφάλμα αποθήκευσης συντεταγμένων για τον Σχεδιαστή." @@ -11095,216 +11306,6 @@ msgstr "" "ρύθμιση κάθε φορά, να παρατηρείτε τη βάση δεδομένων και αναιρέστε την αλλαγή " "αν δεν υπήρχε ουσιαστική βελτίωση." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Οδηγίες Εποπτείας" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Η Εποπτεία phpMyAdmin μπορεί να σας βοηθήσει να βελτιστοποιήσετε τη ρύθμιση " -"του διακομιστή και να καταγράφει χρονοβόρα ερωτήματα. Για το τελευταίο θα " -"χρειαστείτε να ορίσετε το log_output σε «TABLE» και να έχετε ενεργοποιήσει " -"το slow_query_log ή το general_log. Σημειώστε, ωστόσο, ότι το general_log " -"παράγει πολλά δεδομένα και αυξάνει τη χρήση πόρων του διακομιστή μέχρι και " -"15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Δυστυχώς ο διακομιστής βάσεων δεδομένων σας δεν υποστηρίζει καταγραφή σε " -"πίνακα, κάτι που είναι προαπαιτούμενο για την ανάλυση των καταγραφών βάσεων " -"δεδομένων με το phpMyAdmin. Η καταγραφή σε πίνακα υποστηρίζεται από την " -"MySQL 5.1.6 και νεότερη. Μπορείτε να χρησιμοποιήσετε παρόλα αυτά τα " -"χαρακτηριστικά διαγραμμάτων του διακομιστή." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Χρήση της εποπτείας:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Για να προβάλετε ερωτήματα από τις καταγραφές, επιλέξτε το αντίστοιχο " -"χρονικό εύρος σε οποιοδήποτε διάγραμμα έχοντας πατημένο το πλήκτρο το " -"ποντικιού και σαρώνοντας την επιφάνεια του διαγράμματος. Μόλις το " -"επιβεβαιώσετε, θα φορτωθεί ένας πίνακας ομαδοποιημένων ερωτημάτων, οπού εκεί " -"μπορείτε να πατήσετε οποιαδήποτε δήλωση SELECTγια περαιτέρω ανάλυση." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Σημειώστε:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Η ενεργοποίηση του general_log μπορεί να αυξήσει τη φόρτωση του διακομιστή " -"κατά 10-15%. Επίσης, έχετε υπόψη ότι η δημιουργία στατιστικών από τις " -"καταγραφές είναι μια εργασία με υψηλές απαιτήσεις σε πόρους, για αυτό σας " -"προτείνουμε να επιλέξετε μόνο ένα μικρό χρονικό διάστημα και να " -"απενεργοποίησετε το general_log και να αδειάσετε τον πίνακά του μόλις δεν " -"είναι απαραίτητη η εποπτεία." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Προσθήκη διαγράμματος" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Προκαθορισμός διαγράμματος" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Μεταβλητή(ές) κατάστασης" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Επιλογή σειρών:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Συχνά εποπτευόμενα" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ή όνομα τύπου μεταβλητής:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Προβολή ως διαφορική τιμή" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Εφαρμογή διαιρέτη" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Προσάρτηση μονάδας στις τιμές δεδομένων" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Προσθήκη αυτής της σειράς" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Εκκαθάριση σειράς" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Σειρά σε Διάγραμμα:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Στατιστικά καταγραφών" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Επιλεγμένο εύρος χρόνου:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Λήψη μόνο των δηλώσεων SELECT,INSERT,UPDATE και DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Απομάκρυνση δεδομένων μεταβλητών στις δηλώσεις INSERT για καλύτερη " -"ομαδοποιήση" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Επιλέξτε από ποια καταγραφή θέλετε να δημιουργούνται τα στατιστικά." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Τα αποτελέσματα ομαδοποιηούνται ανα κείμενο ερωτήματος." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Αναλυτής ερωτήματος" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d δευτερόλεπτο" -msgstr[1] "%d δευτερόλεπτο" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d λεπτά" -msgstr[1] "%d λεπτά" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Έναρξη Εποπτείας" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Οδηγίες/Εγκατάσταση" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Ολοκληρώθηκε η μετακίνηση (επανατοποθέτηση) διαγραμμάτων" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Ενεργοποίηση μετακίνησης διαγραμμάτων" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Ρυθμός ανανέωσης" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Στήλες διαγράμματος" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Διευθέτηση διαγράμματος" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Επαναφορά προεπιλογής" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12442,24 +12443,24 @@ msgstr "" msgid "Wrong data" msgstr "Εσφαλμένα δεδομένα" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Χρήση του σελιδοδείκτη «%s» ως προεπιλεγμένο ερώτημα φυλλομετρητή." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Ο σελιδοδείκτης δεν δημιουργήθηκε" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Εμφάνιση ως κώδικά PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Επικυρωμένη SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12469,19 +12470,11 @@ msgstr "" "Καννάβου, επικογής, Επεξεργασίας, Αντιγραφής και Διαγραφής δεν είναι " "διαθέσιμα." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Προβλήματα με τα ευρετήρια στον πίνακα «%s»" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Αποθήκευση αυτού του ερωτήματος SQL" - -#: sql.php:1191 -msgid "Label:" -msgstr "Ετικέτα:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Κανένα δεδομένο για προβολή" @@ -12557,6 +12550,10 @@ msgstr "Τιμές Χ" msgid "Y-Axis label:" msgstr "Ετικέτα άξονα Υ:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Εγγραφή έναρξης:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12689,31 +12686,31 @@ msgstr "Επιλέξτε στήλη για εμφάνιση:" msgid "No column selected." msgstr "Δεν επιλέχθηκε στήλη." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Αναφορά παρακολούθησης για τον πίνακα «%s»" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Η έκδοση %1$s δημιουργήθηκε, η παρακολούθηση του %2$s ενεργοποιήθηκε." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Παρακολούθηση του %1$s απενεργοποιήθηκε στην έκδοση %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Παρακολούθηση του %1$s ενεργοποιήθηκε στην έκδοση %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Οι δηλώσεις SQL εκτελέστηκαν." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12721,114 +12718,114 @@ msgstr "" "Μπορείτε να εκτελέσετε τον κάδο δημιουργώντας και χρησιμοποιώντας μι " "προσωρινή βάση δεδομένων. Σιγουρευτείτε ότι έχετε τα δικαιώματα για αυτό." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Κάντε σχόλια αυτές τις δύο γραμμές αν δεν τις χρειάζεστε." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Οι δηλώσεις SQL εξήχθησαν. Αντιγράψτε τον κάδο ή εκτελέστε τον." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Στιγμιότυπο έκδοσης %s (κώδικας SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Ο προσδιορισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Ο χειρισμός των δεδομένων παρακολούθησης διαγράφτηκε επιτυχώς" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Δηλώσεις παρακολούθησης" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Εμφάνιση %1$s με ημερομηνίες από %2$s έως %3$s από χρήστη %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Διαγραφή γραμμής δεδομένων παρακολούθησης από την αναφορά" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Δεν υπάρχουν δεδομένα" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Ημερομηνία" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Δήλωση ορισμού δεδομένων" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Δήλωση χειρισμού δεδομένων" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Κάδος SQL (λήψη αρχείου)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Κάδος SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" "Αυτή η επιλογή θα αντικαταστήσει τον πίνακα και τα περιεχόμενά δεδομένα." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Εκτέλεση SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Εξαγωγή ως %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Εμφάνιση εκδόσεων" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Απενεργοποιήση παρακολούθησης για το %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Απενεργοποιήση τώρα" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Ενεργοποίηση παρακολούθησης για το %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ενεργοποιήση τώρα" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Δημιουργία έκδοσης %1$s του %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων ορισμού δεδομένων:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Παρακολούθηση αυτών των δηλώσεων χειρισμού δεδομένων:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Δημιουργία έκδοσης" @@ -14192,6 +14189,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Το concurrent_insert έχει οριστεί στο 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Κεφαλίδες κάθε %s εγγραφές" + #~ msgid "Check if you want tp use reCaptcha on the login screen" #~ msgstr "" #~ "Επιλέξτε το αν θέλετε να χρησιμοποιήσετε reCaptcha στην οθόνη σύνδεσης" diff --git a/po/en_GB.po b/po/en_GB.po index 89ba4689b7..4e11ed5661 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-31 14:26+0200\n" "Last-Translator: Robert Readman \n" "Language-Team: English (United Kingdom) %2$s" msgstr[1] "%1$s matches in %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Browse" @@ -2448,14 +2449,14 @@ msgstr "Browse" msgid "Delete the matches for the %s table?" msgstr "Delete the matches for the %s table?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Delete" @@ -2517,45 +2518,34 @@ msgctxt "Last page" msgid "End" msgstr "End" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Start row" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Number of rows:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Mode" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (rotated headers)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Headers every %s rows" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2582,68 +2572,68 @@ msgstr "Sort by key" msgid "Options" msgstr "Options" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Partial texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Full texts" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relational key" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relational display column" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Show binary contents" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Show BLOB contents" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Show binary contents as HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Hide browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "The row has been deleted" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "in query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2652,21 +2642,21 @@ msgstr "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Showing rows" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Query took %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2675,8 +2665,8 @@ msgstr "Query took %01.4f sec" msgid "With selected:" msgstr "With selected:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2687,45 +2677,45 @@ msgstr "With selected:" msgid "Check All" msgstr "Check All" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Create view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Query results operations" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Print view" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Print view (with full texts)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Display chart" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualise GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link not found" @@ -2803,38 +2793,38 @@ msgstr "No index defined!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexes" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Packed" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Collation" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comment" @@ -2869,14 +2859,14 @@ msgstr "View" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structure" @@ -2889,12 +2879,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Search" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Insert" @@ -3021,15 +3011,15 @@ msgstr[1] "%1$d rows inserted." msgid "Error while creating PDF:" msgstr "Error while creating PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Could not save recent table" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Recent tables" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "There are no recent tables" @@ -3274,7 +3264,7 @@ msgid "Maximum rows to plot" msgstr "Maximum rows to plot" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Browse foreign values" @@ -3675,7 +3665,7 @@ msgstr "An enumeration, chosen from the list of defined values" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3736,7 +3726,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -3775,49 +3765,49 @@ msgstr "The %s functionality is affected by a known bug, see %s" msgid "Click to toggle" msgstr "Click to toggle" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Browse your computer:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Select from the web server upload directory %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "The directory you set for upload work cannot be reached" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "There are no files to upload" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Empty" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Execute" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Print" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creation" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Last update" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Last check" @@ -3936,58 +3926,58 @@ msgstr "possible exploit" msgid "numeric key detected" msgstr "numeric key detected" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Test" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Both" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nowhere" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Left" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Right" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Click" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Double click" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Disabled" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Open" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Closed" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3997,7 +3987,7 @@ msgstr "Closed" msgid "structure" msgstr "structure" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4007,7 +3997,7 @@ msgstr "structure" msgid "data" msgstr "data" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4017,31 +4007,31 @@ msgstr "data" msgid "structure and data" msgstr "structure and data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Quick - display only the minimal options to configure" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Custom - display all possible options to configure" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Custom - like above, but without the quick/custom choice" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "complete inserts" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "extended inserts" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "both of the above" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "neither of the above" @@ -6160,8 +6150,8 @@ msgstr "" "If you have a custom username, specify it here (defaults to [kbd]anonymous[/" "kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Username" @@ -6573,7 +6563,7 @@ msgstr "Database(s):" msgid "Table(s):" msgstr "Table(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rows:" @@ -7194,7 +7184,7 @@ msgid "No data found for GIS visualization." msgstr "No data found for GIS visualisation." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returned an empty result set (i.e. zero rows)." @@ -7315,11 +7305,11 @@ msgid "" msgstr "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Showing SQL query" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserted row id: %1$d" @@ -7370,7 +7360,7 @@ msgstr "Add table prefix" msgid "Add prefix" msgstr "Add prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Do you really want to execute the following query?" @@ -7592,16 +7582,16 @@ msgid_plural "%s other results found" msgstr[0] "%s other result found" msgstr[1] "%s other results found" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filter databases by name" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Clear Fast Filter" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "Filter tables by name" @@ -7699,17 +7689,17 @@ msgid "Drop the database (DROP)" msgstr "Drop the database (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Structure only" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structure and data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data only" @@ -8132,7 +8122,7 @@ msgstr "Put columns names in the first row" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8140,7 +8130,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8158,7 +8148,7 @@ msgstr "PHP Version" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9295,7 +9285,7 @@ msgstr "Attributes" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9460,7 +9450,7 @@ msgid "Library" msgstr "Library" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9925,71 +9915,288 @@ msgstr "" "server uses, if they have been changed manually. In this case, you should " "%sreload the privileges%s before you continue." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "The selected user was not found in the privilege table." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "You have added a new user." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d second" +msgstr[1] "%d seconds" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minute" +msgstr[1] "%d minutes" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Log statistics" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Selected time range:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Remove variable data in INSERT statements for better grouping" + +#: libraries/server_status_monitor.lib.php:111 +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." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Results are grouped by query text." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Query analyser" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitor Instructions" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"The phpMyAdmin Monitor can assist you in optimising the server configuration " +"and track down time intensive queries. For the latter you will need to set " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analysing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Using the monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"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." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyse them." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Please note:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Add chart" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Preset chart" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Status variable(s)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Select series:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Commonly monitored" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "or type variable name:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Display as differential value" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Apply a divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Append unit to data values" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Add this series" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Clear series" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series in Chart:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Start Monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instructions/Setup" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Done dragging (rearranging) charts" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Enable charts dragging" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Refresh rate" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Chart columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Chart arrangement" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"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." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Reset to default" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL result" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generated by" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Data file grow size" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Other" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Start" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total time:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Time" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Close" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Time" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bookmark this SQL query" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Let every user access this bookmark" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10010,10 +10217,6 @@ msgstr "Clear" msgid "Bookmark this SQL query:" msgstr "Bookmark this SQL query" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Let every user access this bookmark" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Replace existing bookmark of same name" @@ -10152,7 +10355,7 @@ msgstr "Check tables having overhead" msgid "Sort" msgstr "Sort" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "None" @@ -10308,7 +10511,7 @@ msgstr "Effective" msgid "Table %1$s has been altered successfully" msgstr "Table %1$s has been altered successfully" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Query error" @@ -10465,7 +10668,7 @@ msgstr "Error in ZIP archive:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatal error: The navigation can only be accessed via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modifications have been saved" @@ -10521,7 +10724,7 @@ msgstr "Toggle small/big" msgid "Toggle relation lines" msgstr "Toggle relation lines" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export coordinates for PDF schema" @@ -10581,43 +10784,43 @@ msgstr "Aggregate" msgid "Active options" msgstr "Active options" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Page has been created" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Page creation failed" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Page" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import from selected page" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Export to selected page" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Create a page and export to it" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "New page name: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Export/Import to scale" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recommended" @@ -10645,7 +10848,7 @@ msgstr "Internal relation added" msgid "Relation deleted" msgstr "Relation deleted" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Error saving coordinates for Designer." @@ -11088,208 +11291,6 @@ msgstr "" "time, observe or benchmark your database, and undo the change if there was " "no clearly measurable improvement." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitor Instructions" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"The phpMyAdmin Monitor can assist you in optimising the server configuration " -"and track down time intensive queries. For the latter you will need to set " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analysing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Using the monitor:" - -#: server_status_monitor.php:485 -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 "" -"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." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyse them." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Please note:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Add chart" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Preset chart" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Status variable(s)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Select series:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Commonly monitored" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "or type variable name:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Display as differential value" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Apply a divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Append unit to data values" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Add this series" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Clear series" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series in Chart:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Log statistics" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Selected time range:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Remove variable data in INSERT statements for better grouping" - -#: server_status_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Results are grouped by query text." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Query analyser" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d second" -msgstr[1] "%d seconds" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minute" -msgstr[1] "%d minutes" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Start Monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instructions/Setup" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Done dragging (rearranging) charts" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Enable charts dragging" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Refresh rate" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Chart columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Chart arrangement" - -#: server_status_monitor.php:736 -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 "" -"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_monitor.php:750 -msgid "Reset to default" -msgstr "Reset to default" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12373,24 +12374,24 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters." msgid "Wrong data" msgstr "Wrong data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Using bookmark \"%s\" as default browse query." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bookmark not created" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Showing as PHP code" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validated SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12402,21 +12403,11 @@ msgstr "" "This table does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problems with indexes of table `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bookmark this SQL query" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Label" - #: tbl_chart.php:38 msgid "No data to display" msgstr "No data to display" @@ -12492,6 +12483,12 @@ msgstr "X Values" msgid "Y-Axis label:" msgstr "Y-Axis label:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Start row" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12630,31 +12627,31 @@ msgstr "Choose column to display" msgid "No column selected." msgstr "No column selected." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking report for table `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s was created, tracking for %2$s is active." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking for %1$s was deactivated at version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking for %1$s was activated at version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL statements executed." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12662,113 +12659,113 @@ msgstr "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comment out these two lines if you do not need them." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL statements exported. Please copy the dump or execute it." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s snapshot (SQL code)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Tracking data definition successfully deleted" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking data manipulation successfully deleted" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Tracking statements" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Delete tracking data row from report" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "No data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Date" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Data definition statement" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Data manipulation statement" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dump (file download)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "This option will replace your table and contained data." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL execution" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Export as %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Show versions" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deactivate tracking for %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deactivate now" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activate tracking for %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activate now" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Create version %1$s of %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Track these data definition statements:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Track these data manipulation statements:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Create version" @@ -14053,6 +14050,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is set to 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Headers every %s rows" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/es.po b/po/es.po index 318923b8e4..bd1b594a56 100644 --- a/po/es.po +++ b/po/es.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-12 18:24+0200\n" "Last-Translator: Matías Bellone \n" -"Language-Team: Spanish " -"\n" +"Language-Team: Spanish \n" "Language: es\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Buscar:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "Buscar:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Continuar" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nombre de la clave" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Descripción" @@ -107,7 +107,7 @@ msgstr "" "El archivo %s no está disponible en este sistema, visite www.phpmyadmin.net " "para más información." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "La base de datos %1$s ha sido creada." @@ -135,7 +135,7 @@ msgstr "Comentarios de la tabla:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Columna" @@ -158,7 +158,7 @@ msgstr "Columna" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tipo" @@ -175,7 +175,7 @@ msgstr "Tipo" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulo" @@ -190,7 +190,7 @@ msgstr "Nulo" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Predeterminado" @@ -232,9 +232,9 @@ msgstr "Comentarios" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "No" @@ -259,9 +259,9 @@ msgstr "No" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Sí" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabla" @@ -391,7 +391,7 @@ msgstr "Tablas con seguimiento" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de datos" @@ -399,17 +399,17 @@ msgstr "Base de datos" msgid "Last version" msgstr "Última versión" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Creado/a" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Actualizado" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Estado actual" @@ -422,7 +422,7 @@ msgstr "Estado actual" msgid "Action" msgstr "Acción" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Mostrar" @@ -431,18 +431,18 @@ msgid "Delete tracking data for this table" msgstr "Borrar los datos de seguimiento para esta tabla" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Eliminar" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "activo/a" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "no activo/a" @@ -450,11 +450,11 @@ msgstr "no activo/a" msgid "Versions" msgstr "Versiones" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Informe de seguimiento" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantánea de la estructura" @@ -656,7 +656,7 @@ 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:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "El favorito %s fue creado" @@ -683,7 +683,7 @@ 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:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -897,7 +897,7 @@ msgstr "" "El servidor está utilizando Suhosin. Refiérase a la %sdocumentación%s por " "posibles inconvenientes." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Las sentencias \"DROP DATABASE\" están desactivadas." @@ -906,7 +906,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "¡Está a punto de DESTRUIR una base de datos completa!" @@ -990,8 +990,8 @@ msgstr "Recargando Privilegios" msgid "Removing Selected Users" msgstr "Eliminando los usuarios seleccionados" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Cerrar" @@ -1118,13 +1118,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1166,7 +1166,7 @@ msgstr "Tráfico" # This is the text showed in the tab #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Configuración" @@ -1186,13 +1186,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Ninguna" @@ -1292,7 +1293,7 @@ msgstr "Cambiar configuraciones" msgid "Current settings" msgstr "Configuraciones actuales" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Título del gráfico" @@ -1381,7 +1382,7 @@ msgstr "Explicar salida" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tiempo" @@ -1479,7 +1480,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importar" @@ -1536,7 +1537,7 @@ msgid "Cancel" msgstr "Cancelar" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Cargando" @@ -1686,10 +1687,10 @@ msgstr "Ocultar ventana de consultas SQL" msgid "Show query box" msgstr "Mostrar ventana de consultas SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1699,7 +1700,7 @@ msgstr "Editar" msgid "No rows selected" msgstr "No se seleccionaron filas" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1783,7 +1784,7 @@ msgstr "Contenido del punto de datos" msgid "Ignore" msgstr "Ignorar" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Copiar" @@ -1799,7 +1800,7 @@ msgstr "Cadena de líneas" msgid "Polygon" msgstr "Polígono" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometría" @@ -2290,33 +2291,33 @@ msgstr "por hora" msgid "per day" msgstr "por día" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "El archivo de configuración existente (%s) no pudo ser leído." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permisos incorrectos en el archivo de configuración ¡cualquiera no debería " "poder modificarlo!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Tamaño de fuente" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ascendente" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2331,7 +2332,7 @@ msgstr "Columna:" msgid "Sort:" msgstr "Ordenar:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Mostrar:" @@ -2450,8 +2451,8 @@ msgstr[0] "%1$s coincidencia en la tabla %2$s" msgstr[1] "%1$s coincidencias en la tabla %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Examinar" @@ -2460,14 +2461,14 @@ msgstr "Examinar" msgid "Delete the matches for the %s table?" msgstr "¿Eliminar las coincidencias para la tabla %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Borrar" @@ -2529,41 +2530,32 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Fila de inicio:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Número de filas:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Modo:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (encabezados rotados)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeceras cada %s filas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Ordenar según la clave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2590,70 +2582,70 @@ msgstr "Ordenar según la clave" msgid "Options" msgstr "Opciones" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Textos parciales" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Clave relacional" # Display option apparently related to # http://www.phpmyadmin.net/documentation/#relation -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Mostrar columna de relación" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Mostrar contenido binario" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Mostrar contenido BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar contenido binario como HEXadecimal" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Ocultar transformación del navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Texto muy conocido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Binario muy conocido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "La fila se ha borrado" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Matar el proceso" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Podría ser aproximado. Ver [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "en la consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2662,21 +2654,21 @@ msgstr "" "Esta vista tiene al menos este número de filas. Refiérase a la " "%sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "La consulta tardó %01.4f seg" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2685,8 +2677,8 @@ msgstr "La consulta tardó %01.4f seg" msgid "With selected:" msgstr "Para los elementos que están marcados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2697,45 +2689,45 @@ msgstr "Para los elementos que están marcados:" msgid "Check All" msgstr "Marcar todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Crear vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operaciones sobre los resultados de la consulta" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Vista de impresión" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Previsualización para imprimir (documento completo)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualizar datos GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "No se encontró el enlace" @@ -2816,38 +2808,38 @@ msgstr "¡No se ha definido ningún índice!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalidad" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Cotejamiento" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentario" @@ -2882,14 +2874,14 @@ msgstr "Visualizar" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estructura" @@ -2902,12 +2894,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Buscar" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Insertar" @@ -3034,15 +3026,15 @@ msgstr[1] "%1$d filas insertadas." msgid "Error while creating PDF:" msgstr "Error al crear PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "No se pudo guardar la tabla reciente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tablas recientes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "No existen tablas recientes" @@ -3287,7 +3279,7 @@ msgid "Maximum rows to plot" msgstr "Máximo número de filas a graficar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Mostrar los valores foráneos" @@ -3702,7 +3694,7 @@ msgstr "Una enumeración, elegida de una lista de valores definidos" msgid "Max: %s%s" msgstr "Máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "consulta SQL:" @@ -3761,7 +3753,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En línea" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfilando" @@ -3800,51 +3792,51 @@ msgstr "La funcionalidad %s está afectada por un fallo conocido, vea %s" msgid "Click to toggle" msgstr "Pulse para conmutar" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Buscar en su ordenador:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Seleccionar directorio en el servidor web para subir los archivos %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "No hay archivos para subir" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Vaciar" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Ejecutar" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Imprimir" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creación" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Última actualización" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Última revisión" @@ -3964,42 +3956,42 @@ msgstr "posible aprovechamiento" msgid "numeric key detected" msgstr "telado numérico detectado" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Íconos" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Texto" # Used for # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_NavigationBarIconic -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Ambos" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Ninguno" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Izquierda" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Derecha" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Pulsado simple" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Pulsado doble" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" @@ -4007,16 +3999,16 @@ msgstr "Deshabilitado" # Used for # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Desplegados" # http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Ocultos" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4026,7 +4018,7 @@ msgstr "Ocultos" msgid "structure" msgstr "estructura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4036,7 +4028,7 @@ msgstr "estructura" msgid "data" msgstr "datos" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4046,31 +4038,31 @@ msgstr "datos" msgid "structure and data" msgstr "estructura y datos" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rápido - mostrar solo el mínimo de opciones de configuración" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personalizado - mostrar todas las opciones de configuración posibles" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "INSERTs completos" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "INSERTs extensos" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "todo lo anterior" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ninguno de los anteriores" @@ -6214,8 +6206,8 @@ msgstr "" "Si se posee un nombre de usuario propio, especifícalo aquí (valor por " "defecto: [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nombre de usuario" @@ -6638,7 +6630,7 @@ msgstr "Base(s) de datos:" msgid "Table(s):" msgstr "Tabla(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Filas:" @@ -7274,7 +7266,7 @@ msgid "No data found for GIS visualization." msgstr "No se encontraron datos para la visualización GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 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)." @@ -7395,11 +7387,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Mostrando la consulta SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "La Id de la fila insertada es: %1$d" @@ -7445,7 +7437,7 @@ msgstr "Agregar prefijo a la tabla:" msgid "Add prefix" msgstr "Agregar prefijo" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "¿Realmente desea ejecutar la siguiente consulta?" @@ -7667,16 +7659,16 @@ msgid_plural "%s other results found" msgstr[0] "Se encontró %s resultado adicional" msgstr[1] "Se encontraron %s resultados adicionales" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrar bases de datos por nombre" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Vaciar filtro rápido" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrar elementos por nombre" @@ -7774,17 +7766,17 @@ msgid "Drop the database (DROP)" msgstr "Eliminar la base de datos (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Únicamente la estructura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estructura y datos" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Solamente datos" @@ -8201,13 +8193,13 @@ msgstr "Poner los nombres de campo en la primera fila:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Servidor:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Tiempo de generación:" @@ -8221,7 +8213,7 @@ msgstr "Versión de PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Base de datos:" @@ -8499,7 +8491,6 @@ msgstr "" "problema e intente nuevamente." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "¡No se pudo procesar la hoja de cálculo Open Document!" @@ -9356,7 +9347,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9520,7 +9511,7 @@ msgid "Library" msgstr "Biblioteca" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versión" @@ -9999,54 +9990,275 @@ msgstr "" "manuales en él. En este caso, nuevamente deberá %scargar la página de " "privilegios%s antes de continuar." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "El usuario que seleccionó no se encontró en la tabla de privilegios." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Ha agregado un nuevo usuario." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estadísticas de registros" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Rango de tiempo seleccionado:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Elegir el registro del que desea generar estadísticas." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Los resultados se agruparán por el texto de la consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizador de consultas" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrucciones de monitorización" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"El Monitorizador de phpMyAdmin puede asistir en la optimización de la " +"configuración del servidor y rastrear consultas que toman mucho tiempo. Para " +"esto último necesitará que «log_output» esté definido como 'TABLE' y tener " +"activado «slow_query_log» o «general_log». Note, sin embargo, que " +"«general_log» produce mucha información y aumenta la carga en el servidor " +"hasta en un 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Desafortunadamente, su servidor de base de datos no soporta almacenar " +"registros a una base de datos, lo que es un requisito para analizar " +"registros de la base de datos con phpMyAdmin. Almacenar registros a una " +"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " +"utilizar las funcionalidades para graficación del servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilizando el monitorizador:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"El navegador actualizará a intervalos regulares todos los gráficos " +"mostrados. Puede agregar gráficos y cambiar la velocidad de actualización en " +"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " +"de rueda dentada en cada gráfico." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Para mostrar las consultas de los registros, seleccione el intervalo de " +"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " +"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " +"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " +"SELECT para analizarla." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Notar que:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activar «general_log» puede aumentar la carga en el servidor en 5-15%. " +"También esté al tanto que generar estadísticas de los registros es una tarea " +"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " +"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " +"que ya no se necesite monitorizar." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Agregar gráfico" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gráfico predefinido" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variable(s) de estado" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Seleccionar serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Monitorizaciones comunes" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "o ingrese el nombre de variable:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Mostrar como un valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar una división" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Agregar unidad a los valores" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Agregar esta serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Vaciar serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series en el gráfico:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Iniciar monitorización" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrucciones/Configuración" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Se finalizó el arrastre (reorganización) de gráficos" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Permitir arrastrar gráficos" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Velocidad de actualización" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Columnas del gráfico" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Ordenación de los gráficos" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"La ordenación de los gráficos es almacenada en el almacenamiento local del " +"navegador. Sería recomendable exportarla si tiene una configuración " +"complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Restaurar valor predeterminado" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Generado por:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Perfilación detallada" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Orden" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Resumen por estado" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Tiempo Total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% de Tiempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Llamadas" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø de Tiempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Guardar esta consulta en favoritos" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etiqueta:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permitir que todo usuario pueda acceder a este favorito" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10065,10 +10277,6 @@ msgstr "Limpiar" msgid "Bookmark this SQL query:" msgstr "Guardar esta consulta en favoritos:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permitir que todo usuario pueda acceder a este favorito" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Reemplazar el favorito existente que tenga el mismo nombre" @@ -10210,7 +10418,7 @@ msgstr "Marcar las tablas con residuo a depurar" msgid "Sort" msgstr "Ordenar" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ninguna" @@ -10364,7 +10572,7 @@ msgstr "Efectivo/a" msgid "Table %1$s has been altered successfully" msgstr "Los cambios en la Tabla %1$s se hicieron exitosamente" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Errores de consulta" @@ -10518,7 +10726,7 @@ msgstr "Error en el archivo ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Error fatal: sólo se puede acceder a la navegación mediante AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Se han guardado las modificaciones" @@ -10574,7 +10782,7 @@ msgstr "Alterne entre pequeño y grande" msgid "Toggle relation lines" msgstr "Conmutar líneas de relación" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para el esquema PDF" @@ -10633,39 +10841,39 @@ msgstr "Agregar" msgid "Active options" msgstr "Opciones activas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Se creó la página" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Falló la creación de la página" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Página:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar de la página seleccionada" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportar a la página seleccionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crear una página y exportar a ella" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nuevo nombre de página: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exporte/Importe a escala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomendado" @@ -10693,7 +10901,7 @@ msgstr "Se añadió la relación interna" msgid "Relation deleted" msgstr "La relación fue eliminada" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Error guardando las coordenadas para el Diseñador." @@ -11151,214 +11359,6 @@ msgstr "" "la vez, observar y medir la base de datos, y revertir el cambio si no hubo " "una mejora diferenciable." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrucciones de monitorización" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"El Monitorizador de phpMyAdmin puede asistir en la optimización de la " -"configuración del servidor y rastrear consultas que toman mucho tiempo. Para " -"esto último necesitará que «log_output» esté definido como 'TABLE' y tener " -"activado «slow_query_log» o «general_log». Note, sin embargo, que " -"«general_log» produce mucha información y aumenta la carga en el servidor " -"hasta en un 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Desafortunadamente, su servidor de base de datos no soporta almacenar " -"registros a una base de datos, lo que es un requisito para analizar " -"registros de la base de datos con phpMyAdmin. Almacenar registros a una " -"tabla está disponible desde MySQL versión 5.1.6 y posterior. Si puede " -"utilizar las funcionalidades para graficación del servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilizando el monitorizador:" - -#: server_status_monitor.php:485 -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 "" -"El navegador actualizará a intervalos regulares todos los gráficos " -"mostrados. Puede agregar gráficos y cambiar la velocidad de actualización en " -"la sección 'Configuración' o eliminar cualquier gráfico utilizando el icono " -"de rueda dentada en cada gráfico." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Para mostrar las consultas de los registros, seleccione el intervalo de " -"tiempo correspondiente en cualquier gráfico manteniendo pulsado el botón " -"izquierdo y arrastrando sobre el gráfico. Una vez confirmado, esto cargará " -"una tabla de consultas agrupadas donde podrá pulsar en cualquier sentencia " -"SELECT para analizarla." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Notar que:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activar «general_log» puede aumentar la carga en el servidor en 5-15%. " -"También esté al tanto que generar estadísticas de los registros es una tarea " -"muy intensiva por lo que se recomienda seleccionar un período de tiempo lo " -"más pequeño posible y desactivar «general_log» y vaciar sus tablas una vez " -"que ya no se necesite monitorizar." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Agregar gráfico" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gráfico predefinido" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variable(s) de estado" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Seleccionar serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Monitorizaciones comunes" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "o ingrese el nombre de variable:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Mostrar como un valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar una división" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Agregar unidad a los valores" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Agregar esta serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Vaciar serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series en el gráfico:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estadísticas de registros" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Rango de tiempo seleccionado:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Sólo recuperar sentencias SELECT, INSERT, UPDATE y DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Eliminar datos variables en sentencias INSERT para mejor agrupación" - -#: server_status_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Los resultados se agruparán por el texto de la consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizador de consultas" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Iniciar monitorización" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrucciones/Configuración" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Se finalizó el arrastre (reorganización) de gráficos" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Permitir arrastrar gráficos" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Velocidad de actualización" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Columnas del gráfico" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Ordenación de los gráficos" - -#: server_status_monitor.php:736 -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 "" -"La ordenación de los gráficos es almacenada en el almacenamiento local del " -"navegador. Sería recomendable exportarla si tiene una configuración " -"complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Restaurar valor predeterminado" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12485,25 +12485,25 @@ msgstr "" msgid "Wrong data" msgstr "Datos incorrectos" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "Utilizando el favorito \"%s\" como consulta predeterminada para examinar." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "No se creó el favorito" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12512,19 +12512,11 @@ msgstr "" "La tabla %s no contiene una columna única. La edición de la grilla y los " "enlaces de copiado, eliminación y edición no están disponibles." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas con los índices de la tabla `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Guardar esta consulta en favoritos" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etiqueta:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "No hay datos para mostrar" @@ -12600,6 +12592,10 @@ msgstr "Valores X" msgid "Y-Axis label:" msgstr "Etiqueta del eje Y:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Fila de inicio:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12731,31 +12727,31 @@ msgstr "Elegir la columna a mostrar:" msgid "No column selected." msgstr "No se seleccionaron columnas." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimiento para la tabla `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Se ha creado la versión %1$s, se ha activado el seguimiento para %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Seguimiento para %1$s desactivado en versión %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Seguimiento de %1$s activado en versión %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Sentencias SQL ejecutadas." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12763,113 +12759,113 @@ msgstr "" "Puede ejecutar el volcado creando y utilizando una base de datos temporal. " "Asegúrese de tener los privilegios para poder hacerlo." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comenta estas dos líneas si no las necesitas." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Sentencias SQL exportadas. Copia el volcado o ejecútalo." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Captura de la versión %s (código SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Definición de seguimiento de datos eliminado exitosamente" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulación de seguimiento de datos eliminada exitosamente" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Realizando el seguimiento de las sentencias" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Muestra %1$s con fechas de %2$s a %3$s por parte del usuario %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Borrar fila de seguimiento de datos del reporte" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "No hay datos" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Fecha" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Sentencia de definición de datos" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Sentencia de manipulación de datos" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Volcado SQL (descarga de archivo)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Volcado SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Esta opción sustituirá tu tabla y los datos que contiene." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Ejecución SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostrar versiones" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar el seguimiento para %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desactivar ahora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activar el seguimiento para %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activar ahora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Hacer un seguimiento de estas sentencias de definición de datos:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Hacer un seguimiento de estas sentencias de manipulación de datos:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crear versión" @@ -14218,6 +14214,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "«concurrent_insert» está definido como 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeceras cada %s filas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/et.po b/po/et.po index 581162d8a3..52934079a5 100644 --- a/po/et.po +++ b/po/et.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-12 10:03+0200\n" "Last-Translator: Kristjan Räts \n" -"Language-Team: Estonian " -"\n" +"Language-Team: Estonian \n" "Language: et\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Otsi:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,24 +72,24 @@ msgstr "Otsi:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Mine" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Võtme nimi" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Kirjeldus" @@ -108,7 +108,7 @@ msgstr "" "%s fail pole selles süsteemis saadaval. Lisateavet leiad aadressilt www." "phpmyadmin.net ." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s andmebaas on loodud." @@ -136,7 +136,7 @@ msgstr "Tabeli kommentaarid:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Veerg" @@ -159,7 +159,7 @@ msgstr "Veerg" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Tüüp" @@ -176,7 +176,7 @@ msgstr "Tüüp" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Tühi" @@ -191,7 +191,7 @@ msgstr "Tühi" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Vaikimisi" @@ -233,9 +233,9 @@ msgstr "Kommentaarid" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ei" @@ -260,9 +260,9 @@ msgstr "Ei" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Jah" @@ -314,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -390,7 +390,7 @@ msgstr "Jälgitud tabelid" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Andmebaas" @@ -398,17 +398,17 @@ msgstr "Andmebaas" msgid "Last version" msgstr "Viimane versioon" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Loodud" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Uuendatud" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Staatus" @@ -421,7 +421,7 @@ msgstr "Staatus" msgid "Action" msgstr "Tegevus" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Näita" @@ -430,18 +430,18 @@ msgid "Delete tracking data for this table" msgstr "Kustuta selle tabeli jälgimise andmed" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Kustuta" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktiivne" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ei ole aktiivne" @@ -449,11 +449,11 @@ msgstr "ei ole aktiivne" msgid "Versions" msgstr "Versioonid" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Jälgimise raport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Struktuuri hetkepilt" @@ -650,7 +650,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "Ei saanud importimise pluginaid laadida, palun kontrolli oma paigaldust!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s järjehoidja on loodud" @@ -677,7 +677,7 @@ msgstr "" "phpMyAdmin ei suuda importimist lõpetada, kuni sa ei suurenda php aja " "piiranguid." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -884,7 +884,7 @@ msgstr "" "Server töötab koos Suhosin'iga. Võimalike probleemide kohta loe " "%sdokumentatsioonist%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" käsud on keelatud." @@ -893,7 +893,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Oled KUSTUTAMAS kogu andmebaasi!" @@ -977,8 +977,8 @@ msgstr "Õiguste uuesti laadimine" msgid "Removing Selected Users" msgstr "Valitud kasutajate kustutamine" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Sulge" @@ -1105,13 +1105,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1150,7 +1150,7 @@ msgid "Traffic" msgstr "Liiklus" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Sätted" @@ -1170,13 +1170,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Puudub" @@ -1276,7 +1277,7 @@ msgstr "Muuda sätteid" msgid "Current settings" msgstr "Praegused sätted" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagrammi pealkiri" @@ -1362,7 +1363,7 @@ msgstr "Selgita väljundit" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Aeg" @@ -1458,7 +1459,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impordi" @@ -1515,7 +1516,7 @@ msgid "Cancel" msgstr "Katkesta" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laadimine" @@ -1663,10 +1664,10 @@ msgstr "Peida päringu kast" msgid "Show query box" msgstr "Näita päringu kasti" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1676,7 +1677,7 @@ msgstr "Muuda" msgid "No rows selected" msgstr "Ridu pole valitud" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1759,7 +1760,7 @@ msgstr "Andmepunkti sisu" msgid "Ignore" msgstr "Ignoreeri" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopeeri" @@ -1775,7 +1776,7 @@ msgstr "Rea sõne" msgid "Polygon" msgstr "Hulktahukas" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geomeetria" @@ -2254,33 +2255,33 @@ msgstr "tunnis" msgid "per day" msgstr "päevas" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Olemasolev seadistusfail (%s) ei ole loetav." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Seadistusfailil on valed õigused. See ei tohiks olla kõikide jaoks " "kirjutatav!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Fondi kõrgus" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Kasvav" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2295,7 +2296,7 @@ msgstr "Veerg:" msgid "Sort:" msgstr "Sorteeri:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Näita:" @@ -2411,8 +2412,8 @@ msgstr[0] "%1$s vaste %2$s tabelis" msgstr[1] "%1$s vastet %2$s tabelis" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Vaata" @@ -2421,14 +2422,14 @@ msgstr "Vaata" msgid "Delete the matches for the %s table?" msgstr "Kustutada %s tabeli vasted?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Kustuta" @@ -2490,41 +2491,32 @@ msgctxt "Last page" msgid "End" msgstr "Lõpp" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Alusta reaga:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Ridade hulk:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Meetod:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horisontaalselt" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horisontaalne (pööratud päised)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikaalselt" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Päised iga %s rea tagant" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sorteeri võtme alusel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2551,68 +2543,68 @@ msgstr "Sorteeri võtme alusel" msgid "Options" msgstr "Valikud" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Osalised tekstid" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Täistekstid" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Seose võti" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Seose näitamise veerg" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Näita binaarsisu" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Näita BLOB sisu" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Näita binaarset sisu HEX-ina" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Peida veebilehitseja transformatsioon" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Harilik tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Harilik binaar" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Rida on kustutatud" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Sulge" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Võib olla umbkaudne. Vaata [doc@faq3-11]KKK 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "päringus" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2620,21 +2612,21 @@ msgid "" msgstr "" "Sellel vaatel on vähemalt nii palju ridu. Palun loe %sdokumentatsiooni%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Näitan ridu" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "kokku" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "päring kestis %01.4f sekundit" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2643,8 +2635,8 @@ msgstr "päring kestis %01.4f sekundit" msgid "With selected:" msgstr "Valitutega:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2655,45 +2647,45 @@ msgstr "Valitutega:" msgid "Check All" msgstr "Vali kõik" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspordi" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Loo vaade" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Päringu tulemuste tegevused" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Prindi vaade" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Prindi vaade (täispikkade tekstidega)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Näita diagrammi" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualiseeri GIS andmed" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Linki ei leitud" @@ -2770,38 +2762,38 @@ msgstr "Indeksit pole määratud!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksid" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Ainulaadne" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakitud" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Hulk" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Kodeering" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentaar" @@ -2836,14 +2828,14 @@ msgstr "Vaade" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktuur" @@ -2856,12 +2848,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Otsi" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Lisa" @@ -2988,15 +2980,15 @@ msgstr[1] "Lisati %1$d rida." msgid "Error while creating PDF:" msgstr "PDF loomisel esines viga:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Ei saa hiljutist tabelit salvestada" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Hiljutised tabelid" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Hiljutisi tabeleid pole" @@ -3235,7 +3227,7 @@ msgid "Maximum rows to plot" msgstr "Suurim ridade hulk diagrammis" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Sirvi võõrvõtme väärtusi" @@ -3634,7 +3626,7 @@ msgstr "Loetelu, mis on valitud määratletud väärtuste nimekirjast" msgid "Max: %s%s" msgstr "Maksimaalne: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL päring:" @@ -3693,7 +3685,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Kiirmuutmine" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profileerimine" @@ -3732,49 +3724,49 @@ msgstr "Seda %s funktsionaalsust mõjutas tuntud viga, vaata %s" msgid "Click to toggle" msgstr "Muuda" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Sirvi oma arvutist:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Vali veebiserveri üleslaadimise kataloogist %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Valitud üleslaadimise kataloogile ei pääse ligi" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Seal pole faile, mida üles laadida" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Tühjenda" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Teosta" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Prindi" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Loodud" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Viimati uuendatud" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Viimane kontroll" @@ -3892,54 +3884,54 @@ msgstr "võimalik turvaauk" msgid "numeric key detected" msgstr "tuvastati arvvõti" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Ikoonid" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Tekst" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Mõlemad" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Mitte kuskil" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Vasak" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Parem" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klikk" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Topeltklikk" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Keelatud" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Avatud" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Suletud" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3949,7 +3941,7 @@ msgstr "Suletud" msgid "structure" msgstr "struktuur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3959,7 +3951,7 @@ msgstr "struktuur" msgid "data" msgstr "andmed" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3969,31 +3961,31 @@ msgstr "andmed" msgid "structure and data" msgstr "struktuur ja andmed" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Kiire - näita ainult peamisi valikuid, mida seadistada" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Kohandatud - näita kõiki võimalikke valikuid, mida seadistada" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Kohandatud - nagu ülemine, aga ilma kiire/kohandatud valikuta" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "lõpeta lisamised" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "laiendatud lisamised" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "mõlemad ülal nimetatuist" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "mitte kumbki ülal nimetatuist" @@ -6087,8 +6079,8 @@ msgstr "" "Kui sul on enda kasutajanimi, siis täpsusta seda siin (vaikimisi on " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Kasutajanimi" @@ -6493,7 +6485,7 @@ msgstr "Andmebaas(id):" msgid "Table(s):" msgstr "Tabel(id):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Read:" @@ -7106,7 +7098,7 @@ msgid "No data found for GIS visualization." msgstr "GIS visualiseerimiseks andmeid ei leitud." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL tagastas tühja tulemuse (s.t nulliread)." @@ -7224,11 +7216,11 @@ msgstr "" "Ühelt väärtuselt teisele liikumiseks kasuta TAB-klahvi või mujale " "liikumiseks kasuta CTRL + nooled" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Näitan SQL päringut" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisatud rea id: %1$d" @@ -7273,7 +7265,7 @@ msgstr "Lisa tabeli eesliide:" msgid "Add prefix" msgstr "Lisa eesliide" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Kas tõesti tahad käivitada selle päringu?" @@ -7495,16 +7487,16 @@ msgid_plural "%s other results found" msgstr[0] "%s muu tulemus leitud" msgstr[1] "%s muud tulemust leitud" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtreeri andmebaase nime alusel" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Puhasta kiire filter" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtreeri tabeleid nime alusel" @@ -7600,17 +7592,17 @@ msgid "Drop the database (DROP)" msgstr "Kustuta andmebaas (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Ainult struktuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktuur ja andmed" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Ainult andmed" @@ -8021,13 +8013,13 @@ msgstr "Aseta veergude nimed esimesse ritta:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Host:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Loomise aeg:" @@ -8041,7 +8033,7 @@ msgstr "PHP versioon:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Andmebaas:" @@ -8314,7 +8306,6 @@ msgstr "" "see viga ja proovi uuesti." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "OpenDocument tabeli parsimine ebaõnnestus!" @@ -9155,7 +9146,7 @@ msgstr "Atribuudid" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Lisaks" @@ -9318,7 +9309,7 @@ msgid "Library" msgstr "Teek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versioon" @@ -9780,54 +9771,269 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Valitud kasutajat õiguste tabelist ei leitud." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Lisasid uue kasutaja." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekund" +msgstr[1] "%d sekundit" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minutit" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logi statistika" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Valitud ajavahemik:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Vali logi, millest statistikat luua." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Tulemused on grupeeritud päringu teksti alusel." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Päringu analüüsija" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Jälgija juhendid" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmini jälgija saab anda sulle soovitusi serveri seadistuse " +"optimeerimise kohta ning jälgida ajakulukaid päringuid. Hiljem võib sul vaja " +"minna muuta log_output väärtuseks 'TABLE' ning lubada kas slow_query_log või " +"general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " +"suurendab serveri koormust kuni 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Kahjuks sinu andmebaasi server ei võimalda logida tabelisse, mis on vajalik " +"andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " +"MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Kasuta jälgijat:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Sinu veebilehitseja värskendab kõiki näidatavaid diagramme iga teatud aja " +"tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " +"eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Kui soovid näha päringuid logist, siis vali sobiv ajavahemik ükskõik " +"millisel diagrammil ning hoia all vasakut hiire nuppu ja loo panoraam üle " +"diagrammi. Kui see on kinnitatud, siis see loob rühmitatud päringute tabeli, " +"kust võid valida edasiseks analüüsimiseks sobivad SELECT käsud." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Palun pane tähele:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log lubamine võib serveri laadimist suurendada 5-15%. Samuti võta " +"teatavaks, et logidest statistika loomine nõuab intensiivset tööd, seetõttu " +"on soovitatav valida ainult üks lühike ajavahemik ja keela general_log ja " +"tühjenda selle tabel, kui jälgimist pole enam tarvis." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Lisa diagramm" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Ettemääratud diagramm" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Staatuse muutuja(d)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vali seeria:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Tavaliselt jälgitav" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "või tipi muutuja nimi:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Näita eristatava väärtusena" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Kasuta jagajat" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Lisa andmete väärtustele ühikud" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Lisa see seeria" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Puhasta seeria" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Seeriad diagrammis:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Alusta jälgimist" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Juhendid/Paigaldus" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Diagrammide korrastamine on lõpetatud" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Luba diagrammide korrastamine" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Uuendamise sagedus" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagrammi veerud" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagrammi korrastus" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " +"Kui paigaldamine on keeruline, võid seda eksportida." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Lähtesta vaikimisi väärtustele" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL tulemus" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Koostanud:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Detailne profiil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Järjestus" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Olek" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Olekupõhine kokkuvõte" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Aeg kokku" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% aeg" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Kutsed" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø aeg" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Lisa see SQL päring järjehoidjasse" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Nimi:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9846,10 +10052,6 @@ msgstr "Puhasta" msgid "Bookmark this SQL query:" msgstr "Lisa see SQL päring järjehoidjasse:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehoidjale" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Asenda samanimelise järjehoidjaga" @@ -9988,7 +10190,7 @@ msgstr "Kontrolli ballastiga tabeleid" msgid "Sort" msgstr "Sorteeri" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Puudub" @@ -10142,7 +10344,7 @@ msgstr "Efektiivne" msgid "Table %1$s has been altered successfully" msgstr "%1$s tabel on edukalt muudetud" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Päringu viga" @@ -10293,7 +10495,7 @@ msgstr "Viga ZIP arhiivis:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fataalne viga: navigeerimiseks on vajalik AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Muutused on salvestatud" @@ -10349,7 +10551,7 @@ msgstr "Lülitu väiksele/suurele" msgid "Toggle relation lines" msgstr "Muuda seose ridu" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Impordi/Ekspordi koordinaadid PDF skeemile" @@ -10407,39 +10609,39 @@ msgstr "Agregaat" msgid "Active options" msgstr "Aktiivsed valikud" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Leht on loodud" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Lehe loomine ebaõnnestus" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Leht:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Impordi valitud lehelt" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Ekspordi valitud lehele" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Loo leht ja ekspordi sellele" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Uue lehe nimi: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Ekspordi/Impordi skaalas:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "soovituslik" @@ -10467,7 +10669,7 @@ msgstr "Sisemine seos on loodud" msgid "Relation deleted" msgstr "Seos on kustutatud" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Kujundaja jaoks koordinaatide salvestamisel esines viga." @@ -10903,208 +11105,6 @@ msgstr "" "jälgida või vaadata oma andmebaasi ja võtta muudatus tagasi, kui ei " "saavutatud mingit praktiliselt mõõdetavat arengut." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Jälgija juhendid" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmini jälgija saab anda sulle soovitusi serveri seadistuse " -"optimeerimise kohta ning jälgida ajakulukaid päringuid. Hiljem võib sul vaja " -"minna muuta log_output väärtuseks 'TABLE' ning lubada kas slow_query_log või " -"general_log. Pane siiski tähele, et general_log toodab palju andmeid ja " -"suurendab serveri koormust kuni 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Kahjuks sinu andmebaasi server ei võimalda logida tabelisse, mis on vajalik " -"andmebaasi logide analüüsimiseks phpMyAdminiga. Tabelisse logimist toetab " -"MySQL 5.1.6 ja uuem. Siiski võid kasutada serveri diagrammi võimalust." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Kasuta jälgijat:" - -#: server_status_monitor.php:485 -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 "" -"Sinu veebilehitseja värskendab kõiki näidatavaid diagramme iga teatud aja " -"tagant. 'Sätted' all võid diagramme lisada ja muuta värskendussagedust või " -"eemaldada diagrammi, kasutades hammasratta ikooni vastaval diagrammil." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Kui soovid näha päringuid logist, siis vali sobiv ajavahemik ükskõik " -"millisel diagrammil ning hoia all vasakut hiire nuppu ja loo panoraam üle " -"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_monitor.php:501 -msgid "Please note:" -msgstr "Palun pane tähele:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log lubamine võib serveri laadimist suurendada 5-15%. Samuti võta " -"teatavaks, et logidest statistika loomine nõuab intensiivset tööd, seetõttu " -"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_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Lisa diagramm" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Ettemääratud diagramm" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Staatuse muutuja(d)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vali seeria:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Tavaliselt jälgitav" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "või tipi muutuja nimi:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Näita eristatava väärtusena" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Kasuta jagajat" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Lisa andmete väärtustele ühikud" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Lisa see seeria" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Puhasta seeria" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Seeriad diagrammis:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logi statistika" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Valitud ajavahemik:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Otsi ainult SELECT,INSERT,UPDATE ja DELETE käske" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Parema grupeerimise saavutamiseks kustuta INSERT käskudest muutuja andmed" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Vali logi, millest statistikat luua." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Tulemused on grupeeritud päringu teksti alusel." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Päringu analüüsija" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekund" -msgstr[1] "%d sekundit" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minutit" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Alusta jälgimist" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Juhendid/Paigaldus" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Diagrammide korrastamine on lõpetatud" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Luba diagrammide korrastamine" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Uuendamise sagedus" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagrammi veerud" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagrammi korrastus" - -#: server_status_monitor.php:736 -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 "" -"Diagrammide korrastust säilitatakse veebilehitseja kohalikus salvestuskohas. " -"Kui paigaldamine on keeruline, võid seda eksportida." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Lähtesta vaikimisi väärtustele" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12184,24 +12184,24 @@ msgstr "Võti peaks sisaldama tähti, numbreid [em]ja[/em] erilisi sümboleid." msgid "Wrong data" msgstr "Valed andmed" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" järjehoidjat kasutatakse vaikimisi sirvimise päringuna." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Järjehoidjat ei loodud" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Näitan PHP koodina" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Valideeritud SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12211,19 +12211,11 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud võimalused " "ei ole saadaval." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleemid `%s` tabeli indeksitega" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Lisa see SQL päring järjehoidjasse" - -#: sql.php:1191 -msgid "Label:" -msgstr "Nimi:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Puuduvad kuvatavad andmed" @@ -12299,6 +12291,10 @@ msgstr "X väärtused" msgid "Y-Axis label:" msgstr "Y-telje nimi:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Alusta reaga:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12428,31 +12424,31 @@ msgstr "Vali veerg, mida näidata:" msgid "No column selected." msgstr "Veergu ei ole valitud." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tabeli jälgimise raport" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versioon %1$s on loodud, %2$s jälgimine on aktiveeritud." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s jälgimine deaktiveeriti versioonil %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s jälgimine aktiveeriti versioonil %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL käsud on käivitatud." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12460,114 +12456,114 @@ msgstr "" "Ajutise andmebaasi loomisega ja kasutamisega saad käivitada tõmmise. Palun " "veendu, et sul on selle jaoks õigusi." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kustuta need kaks rida, kui sa ei vaja neid." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL käsud on eksporditud. Palun kopeeri tõmmis või käivita see." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versiooni %s hetkepilt (SQL kood)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Jälgimise andmete definitsioon on edukalt kustutatud" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Jälgimise andmete töötlus on edukalt kustutatud" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Jälgimise käsud" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "Näita %1$s koos kuupäevadega alates %2$s kuni %3$s kasutajaks %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Kustuta raportist jälgimise andmete rida" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Andmed puuduvad" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Kuupäev" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Andmete definitsiooni käsk" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Andmete töötluse käsk" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL tõmmis (faili allalaadimine)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL tõmmis" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "See valik asendab sinu tabeli ja selles sisalduvad andmed." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL teostus" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Ekspordi kui %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Näita versioone" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktiveeri %s jälgimine" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktiveeri kohe" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktiveeri %s jälgimine" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiveeri kohe" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Loo versioon %1$s, %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Jälgi nende andmete definitsiooni käske:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Jälgi nende andmete töötluse käske:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Loo versioon" @@ -13871,6 +13867,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert väärtuseks on määratud 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Päised iga %s rea tagant" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/eu.po b/po/eu.po index f329ecf884..1620d93fe9 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-04-25 15:47+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque %s taulan" msgstr[1] "%s emaitzak %s taulan" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Arakatu" @@ -2600,14 +2601,14 @@ msgstr "Arakatu" msgid "Delete the matches for the %s table?" msgstr "%s taulako aukeratuak ezabatu?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Ezabatu" @@ -2679,48 +2680,36 @@ msgctxt "Last page" msgid "End" msgstr "Amaiera" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Lar" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Errenkada kopurua orriko" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Astel" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (goiburukoak biratuta)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "bertikal" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Exekutatu aurretik aukeratutako kontsulta" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Gakoaren arabera ordenatu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2748,77 +2737,77 @@ msgstr "Gakoaren arabera ordenatu" msgid "Options" msgstr "Eragiketak" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Testu partzialak" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Testu osoak" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Erlazio-eskema" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Nabigatzailearen eraldaketa" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Errenkada ezabatua izan da" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Hil" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "kontsultan" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2827,21 +2816,21 @@ msgstr "" "Ikuspegi honek gutxienez errenkada kopuru hau dauka. Mesedez %sdocumentation" "%s erreferentzia egin." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Errenkadak erakusten" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "guztira" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Kontsulta exekutatzeko denbora %01.4f seg" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2850,8 +2839,8 @@ msgstr "Kontsulta exekutatzeko denbora %01.4f seg" msgid "With selected:" msgstr "Ikurdunak:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2862,48 +2851,48 @@ msgstr "Ikurdunak:" msgid "Check All" msgstr "Guztiak egiaztatu" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esportatu" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Inprimatzeko ikuspegia" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Inprimatzeko ikuspena (testu osoak)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF eskema erakutsi" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Esteka aurkitugabea" @@ -2980,38 +2969,38 @@ msgstr "Ez dago indizerik definituta!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indizeak" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Bakarra" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitatea" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Ordenamendua" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Iruzkinak" @@ -3045,14 +3034,14 @@ msgstr "Ikusipegia" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Egitura" @@ -3065,12 +3054,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Bilatu" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Txertatu" @@ -3202,16 +3191,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "Datuak irakurtzea baimentzen du." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Taularik ez" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3461,7 +3450,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3814,7 +3803,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3875,7 +3864,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3914,50 +3903,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Igoerentzat ezarri duzun direktorioa ez dago eskuragarri" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Hutsik" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Inprimatu" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Sortzea" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Azken eguneraketa" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Azken egiaztapena" @@ -4080,60 +4069,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Txertatu" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Hurrengoa" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Ezgaituta" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Itxi gabeko komatxoak" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4144,7 +4133,7 @@ msgstr "Itxi gabeko komatxoak" msgid "structure" msgstr "Egitura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4154,7 +4143,7 @@ msgstr "Egitura" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4166,35 +4155,35 @@ msgstr "" msgid "structure and data" msgstr "Egitura eta datuak" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "\"Insert\"ak osatu" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "\"insert\" hedatuak" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6246,8 +6235,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Erabiltzaile-izena:" @@ -6663,7 +6652,7 @@ msgstr "Datu-baseak" msgid "Table(s):" msgstr "Taulak" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7254,7 +7243,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)." @@ -7376,11 +7365,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7435,7 +7424,7 @@ msgstr "Taularen aurrizkia aldatu" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7663,18 +7652,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Taularen \"Order By\" aldatu" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7778,17 +7767,17 @@ msgid "Drop the database (DROP)" msgstr "Datu-basea ezabatu (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Egitura soilik" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Egitura eta datuak" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Datuak soilik" @@ -8241,7 +8230,7 @@ msgstr "Eremuen izenak lehenengo errenkadan jarri" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8249,7 +8238,7 @@ msgstr "Zerbitzaria" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8267,7 +8256,7 @@ msgstr "PHP Bertsioa" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9434,7 +9423,7 @@ msgstr "Atributuak" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9610,7 +9599,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "PHP Bertsioa" @@ -10100,68 +10089,282 @@ msgstr "" "daitezke. Kasu honetan, jarraitu aurretik %spribilegioak berkargatu%s " "beharko zenituzke." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Hautatutako erabiltzailea ez da pribilegioen taulan aurkitu." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Erabiltzaile berria gehitu duzu." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "segunduko" +msgstr[1] "segunduko" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "lanean" +msgstr[1] "lanean" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Errenkadaren estatistikak" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Taulak hautatu" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Kontsulta mota" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Gehitu %s zutabe" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Taula berrizendatu izen honetara: " + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Taulak hautatu" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Erabiltzaile berria gehitu" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL kontsulta" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Lar" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Egilea:" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Gehitu/ezabatu irizpide-zutabea" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL emaitza" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Egilea:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Datuak soilik" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Beste" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Egoera" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Gutira" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Denbora" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Itxi" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Denbora" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Kontsulta hau gogokoetan gorde" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiketa" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10182,10 +10385,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Kontsulta hau gogokoetan gorde" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10326,7 +10525,7 @@ msgstr "Arazteko hondakinak egiaztatu" msgid "Sort" msgstr "Ordenatu" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10496,7 +10695,7 @@ msgstr "Eraginkorra" msgid "Table %1$s has been altered successfully" msgstr "Hautatutako erabiltzaileak arrakastaz ezabatu dira." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10665,7 +10864,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Aldaketak gorde dira" @@ -10723,7 +10922,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Txinera tradizionala" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10798,48 +10997,48 @@ msgstr "Sortu" msgid "Active options" msgstr "Taularen hobespenak" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "%s taula ezabatu egin da" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Erabilpena" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fitxategiak inportatu" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Indize berri bat sortu" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Erabiltzaile-izena" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10869,7 +11068,7 @@ msgstr "Barne-erlazioak" msgid "Relation deleted" msgstr "Erlazioen ikuspegia" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11293,205 +11492,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Gehitu %s zutabe" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Taula berrizendatu izen honetara: " - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Taulak hautatu" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Erabiltzaile berria gehitu" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL kontsulta" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Errenkadaren estatistikak" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Taulak hautatu" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Kontsulta mota" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "segunduko" -msgstr[1] "segunduko" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "lanean" -msgstr[1] "lanean" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Lar" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Egilea:" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Gehitu/ezabatu irizpide-zutabea" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12432,49 +12432,39 @@ msgstr "" msgid "Wrong data" msgstr "Datu-baserik ez" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "%s laster-marka sortu da" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL balidatu" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Kontsulta hau gogokoetan gorde" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiketa" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12565,6 +12555,12 @@ msgstr "balioa" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Lar" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12715,151 +12711,151 @@ msgstr "Aukeratu erakutsi beharreko eremua" msgid "No column selected." msgstr "Ez dago datu-baserik aukeratuta." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Jarraipena aktibatuta dago." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Datuak txertatu eta ordezkatzea baimentzen du." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Datu-baserik ez" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Datuak" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Ezabatu taula honetako jarraipen datuak" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Zerbitzariaren bertsioa" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Zerbitzariaren bertsioa" @@ -14022,6 +14018,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Exekutatu aurretik aukeratutako kontsulta" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/fa.po b/po/fa.po index 691dff95a6..b671103cb7 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 15:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian %2$s" msgstr[1] "%1$s همتا در %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "فهرست" @@ -2477,14 +2478,14 @@ msgstr "فهرست" msgid "Delete the matches for the %s table?" msgstr "داده های همتا در جدول %s حذف شوند؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "حذف" @@ -2548,47 +2549,36 @@ msgctxt "Last page" msgid "End" msgstr "انتها" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "شنبه" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "تعداد سطرها در هر صفحه" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "دوشنبه" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "افقي" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "عمودي" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,72 +2606,72 @@ msgstr "" msgid "Options" msgstr "عمليات" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy msgid "Partial texts" msgstr "متغییر" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "كاملا متن" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy msgid "Hide browser transformation" msgstr "اطلاعات ورود" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "سطر حذف گرديد" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "از کار انداختن" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "داخل کوئری" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2690,21 +2680,21 @@ msgstr "" "در این نما حداقل این تعداد از سطرها موجود می باشد . لطفا به %sنوشتار%s " "مراجعه کنید ." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "جمع كل" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2713,8 +2703,8 @@ msgstr "" msgid "With selected:" msgstr "موارد انتخاب شده :" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2725,48 +2715,48 @@ msgstr "موارد انتخاب شده :" msgid "Check All" msgstr "انتخاب همه" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "صدور" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "نماي چاپ" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "نمايش توضيحات ستون" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "پيوند پيدا نشد" @@ -2841,38 +2831,38 @@ msgstr "هيچ فهرستي تعريفنشدهاست!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "فهرستها" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "يكتا" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "مقایسه" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "توضيحات" @@ -2905,14 +2895,14 @@ msgstr "نمایه" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "ساختار" @@ -2925,12 +2915,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "جستجو" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "درج" @@ -3061,15 +3051,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "PDF خطا در موقع درست کردن:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "جدول اخیر ذخیره نشد" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "جدول های اخیر" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "جدول های اخیری وجود ندارد" @@ -3322,7 +3312,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3676,7 +3666,7 @@ msgstr "" msgid "Max: %s%s" msgstr "حداکثر: %s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3737,7 +3727,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "در خط" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "استفاده از پروفایل" @@ -3778,49 +3768,49 @@ msgstr "" msgid "Click to toggle" msgstr "برای انتخاب کلیک کنبد" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "رایانه خود را مشاهده نمایید:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "انتخاب از مسیر آپلود در سرور %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "پوشهاي را كه براي انتقال فايل انتخاب كردهايد قابل دسترسي نيست" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "فایلی برای آپلود موجود نیست" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "خالي" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "اجرا" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "چاپ" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "ایجاد" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "آخرین به روز رسانی" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "آخرین بازدید" @@ -3937,58 +3927,58 @@ msgstr "احتمال وجود exploit" msgid "numeric key detected" msgstr "کلید عددی یافت شد" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "اینسرت" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "امتحان کردن" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "هردو" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "هیچ جا" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "چپ" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "راست" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "غيرفعال" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "بازکردن" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "بسته شده" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3998,7 +3988,7 @@ msgstr "بسته شده" msgid "structure" msgstr "ساختار" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4008,7 +3998,7 @@ msgstr "ساختار" msgid "data" msgstr "اطلاعات" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4018,31 +4008,31 @@ msgstr "اطلاعات" msgid "structure and data" msgstr "ساختار و دادهها" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "سریع - فقط انتخاب های کمی را برای تنظیم نشان می دهد" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "مرسوم - نمایش همه تنظیمات امکان پذیر" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "مرسوم - مانند قبلی، ولی بدون تنظیمات سریع/مرسوم" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "تمام وروديها" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "وروديهاي تمديدشده" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "هر دو گزینه بالا" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "هیچ کدام از گزینه های بالا" @@ -6012,8 +6002,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "نام كاربر" @@ -6413,7 +6403,7 @@ msgstr "پايگاههاي داده:" msgid "Table(s):" msgstr "جدولها" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -6994,7 +6984,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)." @@ -7114,11 +7104,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7173,7 +7163,7 @@ msgstr "جایگزینی پیشوند جدول" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7400,18 +7390,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "تغيير جدول مرتب شده با" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7532,17 +7522,17 @@ msgid "Drop the database (DROP)" msgstr "حذف پایگاه داده" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "فقط ساختار" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ساختار و دادهها" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "فقط دادهها" @@ -7986,7 +7976,7 @@ msgstr "قراردادن نام ستونها در اولين سطر" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -7994,7 +7984,7 @@ msgstr "ميزبان" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8012,7 +8002,7 @@ msgstr "نسخه PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9104,7 +9094,7 @@ msgstr "ويژگيها" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "اضافي" @@ -9275,7 +9265,7 @@ msgid "Library" msgstr "کتابخانه" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "نسخه" @@ -9734,69 +9724,281 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "شما يك كاربر جديد اضافه كرديد." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] " ثانیه" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "دقیقه" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "آمار سطرها" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Select Tables" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "پرس و جو" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "افزودن ستون جديد" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "حذف پایگاه داده" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Select Tables" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "افزودن يك كاربر جديد" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "پرس و جوي SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "شنبه" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "توليدشده توسط" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "اضافه يا حذف ستونها" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "نتيجه SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "توليدشده توسط" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "فقط دادهها" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "دیگر" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "شنبه" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "زمان کل:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "زمان" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "بستن" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "زمان" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Data Label" +msgid "Label:" +msgstr "پايگاه داده" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -9816,10 +10018,6 @@ msgstr "تقویم" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9945,7 +10143,7 @@ msgstr "جدول هایی که سربار دارند را چک کنید" msgid "Sort" msgstr "ترتيب" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10112,7 +10310,7 @@ msgstr "موثر" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10280,7 +10478,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "اصلاحات ذخيره گرديد" @@ -10336,7 +10534,7 @@ msgstr "تعویض کوچک/بزرگ" msgid "Toggle relation lines" msgstr "تعویض خطوط رابط" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "وارد/صدور مختصات برای طرح های PDF" @@ -10398,43 +10596,43 @@ msgstr "مجموع" msgid "Active options" msgstr "گزینه های فعال" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "صفحه مورد نظر ایجاد گردید" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "ایجاد صفحه ممکن نیست" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "صفحه" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "وادر کردن اطلاعات به صفحه انتخاب شده" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "صدور اطلاعات به صفحه انتخاب شده" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "ایجاد صفحه و صدور اطلاعات به آن" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "نام صفحه جدید : " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "صدور / وارد کردن اطلاعات برای مقیاس" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "پیشنهاد شده" @@ -10464,7 +10662,7 @@ msgstr "ارتباط داخلی افزوده شد" msgid "Relation deleted" msgstr "رابطه حذف شد" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "خطای ذخیره مختصات برای طراح." @@ -10881,203 +11079,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "افزودن ستون جديد" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "حذف پایگاه داده" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Select Tables" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "افزودن يك كاربر جديد" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "پرس و جوي SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "آمار سطرها" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Select Tables" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "پرس و جو" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] " ثانیه" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "دقیقه" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "شنبه" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "توليدشده توسط" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "اضافه يا حذف ستونها" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12016,28 +12017,28 @@ msgstr "" msgid "Wrong data" msgstr "No databases" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "بوک مارک %s ایجاد شده" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "معتبرسازي SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12049,21 +12050,11 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Data Label" -msgid "Label:" -msgstr "پايگاه داده" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12155,6 +12146,12 @@ msgstr "مقدار" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "شنبه" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12305,148 +12302,148 @@ msgstr "ستون را براي نمايش انتخاب نماييد" msgid "No column selected." msgstr "هیچ سطری انتخاب نشده است" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "پیگردی فعال می باشد." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "No databases" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "داده" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "نسخه سرور" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "نسخه سرور" diff --git a/po/fi.po b/po/fi.po index 4969fcf4d7..2044cdbbd3 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-12 22:13+0200\n" "Last-Translator: Lassi Ruonavaara \n" "Language-Team: Finnish %2$s" msgstr[1] "%1$s hakutulosta taulussa %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Selaa" @@ -2508,14 +2509,14 @@ msgstr "Selaa" msgid "Delete the matches for the %s table?" msgstr "Poista taulusta %s löytyneet tulokset?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Poista" @@ -2577,45 +2578,34 @@ msgctxt "Last page" msgid "End" msgstr "Viimeinen sivu" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Aloitusrivi" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Rivien määrä:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Tila" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vaakatasossa" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vaakatasossa (kierretyt otsikot)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "pystysuorassa" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Otsikot joka %s rivi" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Lajittele avaimen mukaan" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2642,70 +2632,70 @@ msgstr "Lajittele avaimen mukaan" msgid "Options" msgstr "Valinnat" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Osittaiset tekstit" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Koko tekstit" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relaatioavain" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relaationäyttökenttä" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Näytä binäärisisältö" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Näytä BLOB-sisältö" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Näytä binaarisisältö heksamuodossa" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "piilota webselaimen muunnos" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Rivi on poistettu" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Lopeta" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Saattaa olla summittainen. Katso [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "lauseessa" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2714,21 +2704,21 @@ msgstr "" "Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja " "%sohjeista%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Näkyvillä rivit" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "yhteensä" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Kysely kesti %01.4f s." -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2737,8 +2727,8 @@ msgstr "Kysely kesti %01.4f s." msgid "With selected:" msgstr "Valitut:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2749,45 +2739,45 @@ msgstr "Valitut:" msgid "Check All" msgstr "Valitse kaikki" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Vienti" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Luo näkymä" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Kyselytulosten toimenpiteet" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Tulostusversio" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Tulostusversio (kokonaisin tekstein)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Näytä kaavio" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Linkkiä ei löydy" @@ -2866,38 +2856,38 @@ msgstr "Indeksiä ei ole määritelty!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksit" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Uniikki" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakattu" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinaliteetti" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Aakkosjärjestys" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentti" @@ -2932,14 +2922,14 @@ msgstr "Näkymä" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Rakenne" @@ -2952,12 +2942,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Etsi" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Lisää rivi" @@ -3084,15 +3074,15 @@ msgstr[1] "%1$d riviä lisätty." msgid "Error while creating PDF:" msgstr "Virhe luotaessa PDF-tiedostoa:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Äskeistä taulua ei voitu tallentaa" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Äskeiset taulut" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Äskeisiä tauluja ei ole" @@ -3339,7 +3329,7 @@ msgid "Maximum rows to plot" msgstr "Tulostettavien rivien enimmäismäärä" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Selaa viitearvoja" @@ -3703,7 +3693,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Enimmäiskoko: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3764,7 +3754,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Muokkaus" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilointi" @@ -3803,49 +3793,49 @@ msgstr "Toimintoon %s vaikuttaa tunnettu vika, katso %s" msgid "Click to toggle" msgstr "Vaihda painamalla" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Selaa tietokonettasi:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Valitse verkkopalvelimen lähetyskansiosta %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Tiedostojen lähetykseen valittua hakemistoa ei voida käyttää" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Lähetettäviä tiedostoja ei ole" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Tyhjennä" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Suorita" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Tulosta" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Luotu" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Viimeksi päivitetty" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Viimeksi tarkistettu" @@ -3963,58 +3953,58 @@ msgstr "mahdollinen turva-aukko" msgid "numeric key detected" msgstr "numeerinen avain tunnistettu" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Lisää" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Testaa" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Molemmat" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Ei missään" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Vasen" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Oikea" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Pois päältä" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Avaa" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Suljettu" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4024,7 +4014,7 @@ msgstr "Suljettu" msgid "structure" msgstr "rakenne" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4034,7 +4024,7 @@ msgstr "rakenne" msgid "data" msgstr "tiedot" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4044,31 +4034,31 @@ msgstr "tiedot" msgid "structure and data" msgstr "rakenne ja tiedot" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Mukautettu - näytä kaikki mahdolliset asetukset" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "Kokonaiset lisäyslauseet" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "Laajennetut lisäyslauseet" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "molemmat yltä" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ei kumpikaan yltä" @@ -6215,8 +6205,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Käyttäjänimi" @@ -6630,7 +6620,7 @@ msgstr "Tietokanta(-kannat):" msgid "Table(s):" msgstr "Taulu(t):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rivit:" @@ -7254,7 +7244,7 @@ msgid "No data found for GIS visualization." msgstr "GIS visualisoinnille ei ole tietoja." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)." @@ -7389,11 +7379,11 @@ msgstr "" "Sarkaimella voi siirtyä arvosta seuraavaan, Ctrl- ja nuolinäppäimillä pystyy " "siirtymään minne suuntaan tahansa." -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Näytetään SQL-kysely" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Lisätyn rivin tunnus: %1$d" @@ -7450,7 +7440,7 @@ msgstr "Käytä indeksiä/indeksejä" msgid "Add prefix" msgstr "Käytä indeksiä/indeksejä" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7674,18 +7664,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Lajittele taulu" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7785,17 +7775,17 @@ msgid "Drop the database (DROP)" msgstr "Tuhoa tietokanta (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Vain rakenne" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Rakenne ja tiedot" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Vain tiedot" @@ -8234,7 +8224,7 @@ msgstr "Aseta sarakkeiden nimet ensimmäiselle riville" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8242,7 +8232,7 @@ msgstr "Palvelin" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8260,7 +8250,7 @@ msgstr "PHP:n versio" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9503,7 +9493,7 @@ msgstr "Attribuutit" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Lisätiedot" @@ -9674,7 +9664,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versio" @@ -10158,70 +10148,297 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Valittua käyttäjää ei löytynyt käyttöoikeustaulusta." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Uusi käyttäjä lisätty." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekunti" +msgstr[1] "Sekunti" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minuutti" +msgstr[1] "Minuutti" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Näytä tilastot" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Valitse taulut" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Kyselyn tyyppi" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Tiedot" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Käytä indeksiä/indeksejä" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Tuhoa tietokanta" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Näytä alipalvelimen tilan taulu" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Valitse taulut" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Virheellinen taulun nimi" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Lisää uusi palvelin" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL-kyselyt" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Käynnistä" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Käytä korostusta" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Päivitä" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR-tekstikentän sarakkeet" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Virheiden hallinta:" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Palauta oletusarvoon" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-kyselyn tulos" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Luontiympäristö" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tiedoston koonkasvatusmäärä" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Toinen" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Käynnistys" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Kokonaisaika:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Aika" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Sulje" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Aika" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Tallenna SQL-kysely" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Tunniste" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10242,10 +10459,6 @@ msgstr "Tyhjennä" msgid "Bookmark this SQL query:" msgstr "Tallenna SQL-kysely" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki" @@ -10383,7 +10596,7 @@ msgstr "Valitse taulut, joissa on ylijäämää" msgid "Sort" msgstr "Järjestä" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10557,7 +10770,7 @@ msgstr "Pätevä" msgid "Table %1$s has been altered successfully" msgstr "Taulun %1$s muuttaminen onnistui." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -10731,7 +10944,7 @@ msgstr "Virhe ZIP-paketissa:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Muutokset tallennettu" @@ -10789,7 +11002,7 @@ msgstr "Vaihda pieneksi/suureksi" msgid "Toggle relation lines" msgstr "Valitaksesi relaation, paina :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Tuo/vie PDF-skeeman koordinaatit" @@ -10862,46 +11075,46 @@ msgstr "Luo" msgid "Active options" msgstr "Taulun valinnat" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Taulu %1$s on luotu." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "sivua" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Tuo tiedostoja" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Vie valitulle sivulle" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Luo sivu ja vie se" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Uuden sivun nimi: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Vie/tuo skaalaan" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "suositus" @@ -10931,7 +11144,7 @@ msgstr "Sisäinen relaatio luotu" msgid "Relation deleted" msgstr "Relaatio poistettu" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Virhe tallennettaessa koordinaatteja Suunnittelijaan." @@ -11389,218 +11602,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Tiedot" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Käytä indeksiä/indeksejä" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Tuhoa tietokanta" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Näytä alipalvelimen tilan taulu" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Valitse taulut" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Virheellinen taulun nimi" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Lisää uusi palvelin" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL-kyselyt" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Näytä tilastot" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Valitse taulut" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Kyselyn tyyppi" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekunti" -msgstr[1] "Sekunti" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minuutti" -msgstr[1] "Minuutti" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Käynnistä" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Käytä korostusta" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Päivitä" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR-tekstikentän sarakkeet" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Virheiden hallinta:" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Palauta oletusarvoon" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12774,28 +12775,28 @@ msgstr "" msgid "Wrong data" msgstr "Ei tietokantoja" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Kirjanmerkki %s luotu" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Näytetään PHP-koodina" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Tarkista SQL-lause" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12808,21 +12809,11 @@ msgstr "" "valintaneliöihin, Muokkaa-, Kopioi- ja Poista-linkkeihin liittyvät " "ominaisuudet eivät ehkä ole toiminnassa tallennuksen jälkeen." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Taulun \"%s\" indeksien kanssa on ongelmia" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Tallenna SQL-kysely" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Tunniste" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12918,6 +12909,12 @@ msgstr "Arvo" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Aloitusrivi" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13076,34 +13073,34 @@ msgstr "Valitse näytettävä sarake" msgid "No column selected." msgstr "Ei yhtään riviä valittu" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Taulun `%s` seurantaraportti" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versio %s on luotu, kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Kohteen %s.%s seuranta on käytössä." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-lauseet suoritettu." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13111,125 +13108,125 @@ msgstr "" "Voit tehdä vedoksen luomalla ja käyttämällä tilapäistietokantaa. Varmista, " "että sinulla on oikeudet toiminnon suorittamiseen." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kommentoi nämä kaksi riviä pois, mikäli et tarvitse niitä." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-lauseet viety. Kopioi vedos tai suorita se." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s kuvaus (SQL-koodi)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Seurantalauseet" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Näytä %s päiväyksestä %s päiväykseen %s käyttäjän %s %s osalta" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Poista tämän taulun seurantatiedot" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ei tietokantoja" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Päiväys" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Tiedon määritelmän lause" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Tiedon käsittelyn lause" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-vedos (tiedoston lataus)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-vedos" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Tämä valinta korvaa taulun ja sen sisältämät tiedot." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-suoritus" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Vie kohteena %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Näytä versiot" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Poista kohteen %s.%s seuranta" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Poista käytöstä nyt" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Ota käyttöön kohteen %s.%s seuranta" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ota käyttöön nyt" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Luo versio %s kohteesta %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Seuraa näitä tiedon määritelmän lauseita:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Seuraa näitä tiedon käsittelyn lauseita:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Luo versio" @@ -14485,6 +14482,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Enim. yhtäaikaisia yhteyksiä" +#~ msgid "Headers every %s rows" +#~ msgstr "Otsikot joka %s rivi" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/fr.po b/po/fr.po index fe89510992..01e5869667 100644 --- a/po/fr.po +++ b/po/fr.po @@ -3,10 +3,11 @@ 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: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-12 16:43+0200\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French \n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +46,7 @@ msgid "Search:" msgstr "Rechercher : " #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +72,24 @@ msgstr "Rechercher : " #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Exécuter" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nom de l'index" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Description" @@ -107,7 +108,7 @@ msgstr "" "Le fichier %s n'est pas disponible sur ce serveur, veuillez visiter www." "phpmyadmin.net pour plus d'informations." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "La base de données %1$s a été créée." @@ -135,7 +136,7 @@ msgstr "Commentaires sur la table : " #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Colonne" @@ -158,7 +159,7 @@ msgstr "Colonne" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Type" @@ -175,7 +176,7 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -190,7 +191,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Défaut" @@ -232,9 +233,9 @@ msgstr "Commentaires" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Non" @@ -259,9 +260,9 @@ msgstr "Non" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Oui" @@ -313,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Table" @@ -389,7 +390,7 @@ msgstr "Tables faisant l'objet d'un suivi" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Base de données" @@ -397,17 +398,17 @@ msgstr "Base de données" msgid "Last version" msgstr "Dernière version" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Créé" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Mis à jour" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "État" @@ -420,7 +421,7 @@ msgstr "État" msgid "Action" msgstr "Action" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Afficher" @@ -429,18 +430,18 @@ msgid "Delete tracking data for this table" msgstr "Supprimer les données de suivi de cette table" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Supprimer" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "actif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "non activé" @@ -448,11 +449,11 @@ msgstr "non activé" msgid "Versions" msgstr "Versions" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Rapport de suivi" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Instantané" @@ -653,7 +654,7 @@ msgstr "" "Chargement impossible des greffons d'importation, veuillez vérifier votre " "installation !" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Signet %s créé" @@ -680,7 +681,7 @@ msgstr "" "signifie que phpMyAdmin ne pourra terminer cette importation, à moins que la " "limite de temps de PHP ne soit augmentée." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -892,7 +893,7 @@ msgstr "" "Ce serveur utilise Suhosin. Veuillez vous référer à la %sdocumentation%s " "pour en connaître les conséquences possibles." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "La commande «DROP DATABASE» est désactivée." @@ -901,7 +902,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Vous êtes sur le point de DÉTRUIRE une base de données !" @@ -985,8 +986,8 @@ msgstr "Chargement des privilèges en cours" msgid "Removing Selected Users" msgstr "Effacement des utilisateurs sélectionnés" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Fermer" @@ -1113,13 +1114,13 @@ msgstr "o" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "Kio" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "Mio" @@ -1158,7 +1159,7 @@ msgid "Traffic" msgstr "Trafic" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Paramètres" @@ -1178,13 +1179,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Aucune" @@ -1284,7 +1286,7 @@ msgstr "Changer les paramètres" msgid "Current settings" msgstr "Paramètres courants" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Titre du graphique" @@ -1372,7 +1374,7 @@ msgstr "Expliquer les résultats" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Moment" @@ -1469,7 +1471,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importer" @@ -1526,7 +1528,7 @@ msgid "Cancel" msgstr "Annuler" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Chargement en cours" @@ -1674,10 +1676,10 @@ msgstr "Cacher zone SQL" msgid "Show query box" msgstr "Montrer zone SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1687,7 +1689,7 @@ msgstr "Modifier" msgid "No rows selected" msgstr "Aucune ligne n'a été sélectionnée" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1772,7 +1774,7 @@ msgstr "Données reliées à ce point" msgid "Ignore" msgstr "Ignorer" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Copier" @@ -1788,7 +1790,7 @@ msgstr "Ligne" msgid "Polygon" msgstr "Polygone" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Géométrie" @@ -2277,33 +2279,33 @@ msgstr "par heure" msgid "per day" msgstr "par jour" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Le fichier de configuration (%s) est illisible." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Permissions sur le fichier de configuration incorrectes, il ne doit pas être " "en écriture pour tout le monde !" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Taille du texte" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Croissant" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2318,7 +2320,7 @@ msgstr "Colonne : " msgid "Sort:" msgstr "Tri : " -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Afficher : " @@ -2436,8 +2438,8 @@ msgstr[0] "%1$s correspondance dans %2$s" msgstr[1] "%1$s correspondances dans %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Afficher" @@ -2446,14 +2448,14 @@ msgstr "Afficher" msgid "Delete the matches for the %s table?" msgstr "Supprimer de la table %s les occurences ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Effacer" @@ -2515,41 +2517,32 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Ligne de départ : " - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Nombre de lignes : " -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Mode : " -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (en-têtes pivotés)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "En-têtes à chaque %s ligne" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Trier sur l'index" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2576,68 +2569,68 @@ msgstr "Trier sur l'index" msgid "Options" msgstr "Options" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Textes réduits" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Textes complets" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relations : clés" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relations : colonnes descriptives" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Montrer le contenu binaire" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Montrer le contenu BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Montrer le contenu binaire en hexadécimal" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Masquer les transformations" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "La ligne a été effacée" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Supprimer" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Peut être approximatif. Voir [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "dans la requête" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2646,21 +2639,21 @@ msgstr "" "Cette vue contient au moins ce nombre de lignes. Veuillez référer à " "%sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Affichage des lignes" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Traitement en %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2669,8 +2662,8 @@ msgstr "Traitement en %01.4f sec" msgid "With selected:" msgstr "Pour la sélection : " -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2681,45 +2674,45 @@ msgstr "Pour la sélection : " msgid "Check All" msgstr "Tout cocher" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporter" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Créer une vue" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Opérations sur les résultats de la requête" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Version imprimable" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Version imprimable (avec textes complets)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Afficher le graphique" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualiser les données GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Lien absent" @@ -2801,38 +2794,38 @@ msgstr "Aucun index n'est défini !" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unique" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Compressé" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalité" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Interclassement" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Commentaire" @@ -2867,14 +2860,14 @@ msgstr "Vue" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structure" @@ -2887,12 +2880,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Rechercher" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Insérer" @@ -3019,15 +3012,15 @@ msgstr[1] "%1$d lignes insérées." msgid "Error while creating PDF:" msgstr "Erreur pendant la création du PDF : " -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Impossible de sauvegarder l'historique des tables récentes" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tables récentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Il n'y a pas de tables récentes" @@ -3269,7 +3262,7 @@ msgid "Maximum rows to plot" msgstr "Nombre maximum de lignes de données à utiliser pour le graphique" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Afficher les valeurs de la table liée" @@ -3683,7 +3676,7 @@ msgstr "Une énumération, choisie parmi la liste de valeurs définies" msgid "Max: %s%s" msgstr "Taille maximum: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Requête SQL : " @@ -3742,7 +3735,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "En ligne" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilage" @@ -3781,50 +3774,50 @@ msgstr "La fonctionnalité %s est affectée par une anomalie connue, voir %s" msgid "Click to toggle" msgstr "Cliquer pour basculer" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Parcourir : " -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Le répertoire de transfert est inaccessible" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Aucun fichier n'est disponible pour le transfert" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Vider" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Exécuter" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Imprimer" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Création" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Dernière modification" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Dernière vérification" @@ -3946,54 +3939,54 @@ msgstr "vulnérabilité possible" msgid "numeric key detected" msgstr "Clé numérique détectée" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Icônes" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Texte" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Les deux" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nulle part" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "À gauche" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "À droite" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Clic" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Double-clic" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Désactivé" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Ouvert" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Fermé" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4003,7 +3996,7 @@ msgstr "Fermé" msgid "structure" msgstr "structure" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4013,7 +4006,7 @@ msgstr "structure" msgid "data" msgstr "données" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4023,31 +4016,31 @@ msgstr "données" msgid "structure and data" msgstr "structure et données" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rapide - n'afficher qu'un minimum d'options à configurer" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personnalisée - afficher toutes les options possibles" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personnalisée - comme ci-haut mais sans les choix rapide/personnalisée" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "Insertions complètes" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "Insertions étendues" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "tous les choix ci-haut" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "aucun des choix ci-haut" @@ -6170,8 +6163,8 @@ msgstr "" "Si vous avez un code d'utilisateur, indiquez-le ici ([kbd]anonymous[/kbd] " "par défaut)" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Utilisateur" @@ -6583,7 +6576,7 @@ msgstr "Base(s) de données : " msgid "Table(s):" msgstr "Table(s) : " -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Lignes : " @@ -7212,7 +7205,7 @@ msgid "No data found for GIS visualization." msgstr "Données non disponibles pour visualisation GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a retourné un résultat vide (aucune ligne)." @@ -7334,11 +7327,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Affichage de la requête SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Identifiant de la ligne insérée : %1$d" @@ -7383,7 +7376,7 @@ msgstr "Ajouter un préfixe de table : " msgid "Add prefix" msgstr "Ajouter un préfixe" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Voulez-vous vraiment exécuter la requête suivante ?" @@ -7606,16 +7599,16 @@ msgid_plural "%s other results found" msgstr[0] "%s autre résultat trouvé" msgstr[1] "%s autres résultats trouvés" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrer par nom de base de données" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Effacer le filtrage" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrer les éléments par nom" @@ -7711,17 +7704,17 @@ msgid "Drop the database (DROP)" msgstr "Supprimer la base de données (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Structure seule" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structure et données" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Données seulement" @@ -8135,13 +8128,13 @@ msgstr "Afficher les noms de colonnes en première ligne : " #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Client : " #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Généré le : " @@ -8155,7 +8148,7 @@ msgstr "Version de PHP : " #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Base de données : " @@ -8434,7 +8427,6 @@ msgstr "" "et essayer à nouveau." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Analyse incorrecte du tableur OpenDocument !" @@ -9292,7 +9284,7 @@ msgstr "Attributs" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9455,7 +9447,7 @@ msgid "Library" msgstr "Bibliothèque" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9933,54 +9925,272 @@ msgstr "" "effectifs, si des changements manuels ont été apportés. Dans ce cas, vous " "devriez %srecharger les privilèges%s avant de continuer." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "L'utilisateur choisi n'existe pas dans la table des privilèges." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Vous avez ajouté un utilisateur." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d seconde" +msgstr[1] "%d secondes" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minute" +msgstr[1] "%d minutes" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistiques des journaux" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Sélectionnez un intervalle de temps : " + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Enlever les données variables des énoncés INSERT pour un meilleur groupement" + +#: libraries/server_status_monitor.lib.php:111 +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." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Les résultats sont regroupés par le texte des requêtes." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analyseur de requêtes" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Consignes pour la surveillance" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Le moniteur phpMyAdmin peut vous aider à optimiser la configuration du " +"serveur et à traquer les requêtes qui prennent beaucoup de temps. Pour ce " +"faire vous devrez régler le paramètre log_output à 'TABLE' et activer le " +"journal slow_query_log ou general_log. Cependant, general_log produit " +"beaucoup de données et augmente jusqu'à 15% la charge du serveur." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Votre serveur ne supporte pas l'enregistrement du journal vers une table, ce " +"qui est requis pour l'analyse des journaux par phpMyAdmin. Cette fonction " +"est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " +"utiliser les graphiques de serveur." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilisation de la surveillance : " + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Votre navigateur va rafraîchir les graphiques à intervalle régulier. Vous " +"pouvez ajouter des graphiques et modifier le taux de rafraîchissement sous " +"«Paramètres», ou supprimer tout graphique via l'cône de rouage." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Pour afficher des requêtes à partir des journaux, sélectionnez la portion de " +"temps pertinente sur l'un des graphiques en tenant enfoncé le bouton gauche " +"de la souris et en vous déplaçant sur le graphique. Ceci va charger les " +"statistiques sous forme de requêtes groupées, par la suite vous pouvez " +"cliquer sur tout énoncé SELECT pour une analyse plus poussée." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Note : " + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activer le journal general_log peut causer une augmentation de charge de 5 à " +"15%. Également, la génération des statistiques à partir des journaux est une " +"tâche intensive, donc il est suggéré de ne sélectionner qu'une petite " +"portion de temps et de désactiver general_log puis de vider la table " +"correspondante lorsque la surveillance n'est plus requise." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Ajouter un graphique" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Graphique prédéfini" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variables d'état" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Choisissez les séries : " + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Couramment surveillés" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ou entrez un nom de variable : " + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Afficher en tant que valeur différentielle" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Appliquer un diviseur" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Ajouter l'unité aux valeurs de données" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Ajouter cette série" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Effacer la série" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Séries dans le graphique : " + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Démarrer la surveillance" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Consignes / réglages" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "La modification par glissement des graphiques est terminée" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Active le mode glissement" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Taux de rafraîchissement" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Colonnes du graphique" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Disposition du graphique" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"La disposition du graphique est stockée dans le navigateur. Vous pouvez " +"vouloir l'exporter si vous avez une configuration complexe." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Ramener la valeur par défaut" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Résultat de la requête SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Généré par : " -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Profil détaillé" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Ordre" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "État" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Résumé par état" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Temps total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Temps" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Appels" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "Temps moyen" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Conserver cette requête SQL dans les signets" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Intitulé : " + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Signet visible pour les autres utilisateurs" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9999,10 +10209,6 @@ msgstr "Vider" msgid "Bookmark this SQL query:" msgstr "Conserver cette requête SQL dans les signets : " -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Signet visible pour les autres utilisateurs" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Remplacer un signet existant du même nom" @@ -10142,7 +10348,7 @@ msgstr "Cocher tables avec pertes" msgid "Sort" msgstr "Tri" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Aucune" @@ -10296,7 +10502,7 @@ msgstr "Effectif" msgid "Table %1$s has been altered successfully" msgstr "La table %1$s a été modifiée avec succès" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Erreur de requête" @@ -10448,7 +10654,7 @@ msgstr "Erreur rencontrée dans l'archive ZIP : " msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erreur fatale : la navigation requiert AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" @@ -10504,7 +10710,7 @@ msgstr "Bascule agrandir/réduire" msgid "Toggle relation lines" msgstr "Basculement des lignes de relations" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Exporter les coordonnées pour le schéma PDF" @@ -10562,39 +10768,39 @@ msgstr "Regroupement" msgid "Active options" msgstr "Options actives" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "La page a été créée" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Échec de création de page" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Page : " -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importer depuis la page sélectionnée" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exporter vers la page sélectionnée" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Créer une page et y exporter" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nom de la nouvelle page : " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exporter/Importer à l'échelle : " -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recommandé" @@ -10622,7 +10828,7 @@ msgstr "Relation interne ajoutée" msgid "Relation deleted" msgstr "Relation supprimée" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Erreur lors de la sauvegarde des coordonnées Concepteur." @@ -11076,211 +11282,6 @@ msgstr "" "serveur et défaire le changement si aucune amélioration mesurable ne s'est " "produite." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Consignes pour la surveillance" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Le moniteur phpMyAdmin peut vous aider à optimiser la configuration du " -"serveur et à traquer les requêtes qui prennent beaucoup de temps. Pour ce " -"faire vous devrez régler le paramètre log_output à 'TABLE' et activer le " -"journal slow_query_log ou general_log. Cependant, general_log produit " -"beaucoup de données et augmente jusqu'à 15% la charge du serveur." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Votre serveur ne supporte pas l'enregistrement du journal vers une table, ce " -"qui est requis pour l'analyse des journaux par phpMyAdmin. Cette fonction " -"est supportée par MySQL 5.1.6 et supérieur. Vous pouvez tout de même " -"utiliser les graphiques de serveur." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilisation de la surveillance : " - -#: server_status_monitor.php:485 -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 "" -"Votre navigateur va rafraîchir les graphiques à intervalle régulier. Vous " -"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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Pour afficher des requêtes à partir des journaux, sélectionnez la portion de " -"temps pertinente sur l'un des graphiques en tenant enfoncé le bouton gauche " -"de la souris et en vous déplaçant sur le graphique. Ceci va charger les " -"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_monitor.php:501 -msgid "Please note:" -msgstr "Note : " - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activer le journal general_log peut causer une augmentation de charge de 5 à " -"15%. Également, la génération des statistiques à partir des journaux est une " -"tâche intensive, donc il est suggéré de ne sélectionner qu'une petite " -"portion de temps et de désactiver general_log puis de vider la table " -"correspondante lorsque la surveillance n'est plus requise." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Ajouter un graphique" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Graphique prédéfini" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variables d'état" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Choisissez les séries : " - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Couramment surveillés" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ou entrez un nom de variable : " - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Afficher en tant que valeur différentielle" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Appliquer un diviseur" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Ajouter l'unité aux valeurs de données" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Ajouter cette série" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Effacer la série" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Séries dans le graphique : " - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistiques des journaux" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Sélectionnez un intervalle de temps : " - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Ne traiter que les énoncés SELECT, INSERT, UPDATE et DELETE" - -#: server_status_monitor.php:596 -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_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Les résultats sont regroupés par le texte des requêtes." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analyseur de requêtes" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d seconde" -msgstr[1] "%d secondes" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minute" -msgstr[1] "%d minutes" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Démarrer la surveillance" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Consignes / réglages" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "La modification par glissement des graphiques est terminée" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Active le mode glissement" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Taux de rafraîchissement" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Colonnes du graphique" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Disposition du graphique" - -#: server_status_monitor.php:736 -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 "" -"La disposition du graphique est stockée dans le navigateur. Vous pouvez " -"vouloir l'exporter si vous avez une configuration complexe." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Ramener la valeur par défaut" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12383,24 +12384,24 @@ msgstr "" msgid "Wrong data" msgstr "Données incorrectes" -#: sql.php:216 +#: sql.php:183 #, 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:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Signet non créé" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Affichage du code PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validé" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12410,19 +12411,11 @@ msgstr "" "cases à cocher ainsi que les liens Edition, Copie et Supprimer ne sont pas " "disponibles." -#: sql.php:1154 +#: sql.php:985 #, 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:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Conserver cette requête SQL dans les signets" - -#: sql.php:1191 -msgid "Label:" -msgstr "Intitulé : " - #: tbl_chart.php:38 msgid "No data to display" msgstr "Rien à afficher" @@ -12498,6 +12491,10 @@ msgstr "Valeurs en X" msgid "Y-Axis label:" msgstr "Étiquette pour l'axe des Y : " +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Ligne de départ : " + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12630,31 +12627,31 @@ msgstr "Colonne descriptive : " msgid "No column selected." msgstr "Aucune colonne n'a été sélectionnée." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Rapport de suivi pour la table `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s créée, le suivi pour %2$s est activé." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Le suivi de %1$s a été désactivé à la version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Le suivi de %1$s a été activé à la version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Énoncés SQL exécutés." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12663,113 +12660,113 @@ msgstr "" "temporaire. Veuillez vous assurer que vous avez les privilèges appropriés à " "cette opération." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Enlevez les deux lignes suivantes si elles sont inutiles." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Énoncés SQL exportés. Vous pouvez copier le fichier ou l'exécuter." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantané de la version %s (code SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Le suivi des définitions de données a été effacé avec succès" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Le suivi des manipulations de données a été effacé avec succès" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Suivi des énoncés" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Montrer %1$s depuis le %2$s jusqu'au %3$s par l'utilisateur %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Supprimer du rapport le suivi des données" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Aucune donnée" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Date" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Énoncé de définition de données" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Énoncé de manipulation de données" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Exportation SQL (télécharger)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Exportation SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Cette option remplacera votre table et son contenu." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Exécution SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exporter en tant que %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Montrer les versions" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Désactiver le suivi de %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Désactiver maintenant" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activer le suivi de %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activer maintenant" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Créer la version %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Suivre les énoncés de définition de données suivants : " -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Suivre les énoncés de manipulation de données suivants : " -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Créer une version" @@ -14100,6 +14097,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Le paramètre concurrent_insert a une valeur de 0" +#~ msgid "Headers every %s rows" +#~ msgstr "En-têtes à chaque %s ligne" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/gl.po b/po/gl.po index eda284066c..73e1d29335 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-04-13 18:37+0200\n" "Last-Translator: Julio Guerra \n" "Language-Team: Galician %2$s" msgstr[1] "%1$s coincidencias en %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Visualizar" @@ -2495,14 +2496,14 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "Eliminar as coincidencias para a táboa %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Eliminar" @@ -2564,45 +2565,34 @@ msgctxt "Last page" msgid "End" msgstr "Fin" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Fila de comezo" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Número de filas:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Modo" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (cabezallos rotados)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeceiras cada %s filas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Ordenar pola chave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2629,69 +2619,69 @@ msgstr "Ordenar pola chave" msgid "Options" msgstr "Opcións" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Chave relacional" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Mostrar columna de relación" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Mostrar os contidos binarios" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Mostrar os contidos BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar o contido binario como HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Ocultar a transformación do navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Texto moi coñecido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Binario moi coñecido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Eliminouse a fileira" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Matar (kill)" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" "Pode non ser exacto. Consulte a [doc@faq3-11]pregunta frecuente 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "na consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2700,21 +2690,21 @@ msgstr "" "Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation" "%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "A mostrar as fileiras" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "a consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2723,8 +2713,8 @@ msgstr "a consulta levou %01.4f segundos" msgid "With selected:" msgstr "Cos marcados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2735,45 +2725,45 @@ msgstr "Cos marcados:" msgid "Check All" msgstr "Marcalos todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Crear unha vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operacións cos resultados da consulta" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Visualización previa da impresión" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Vista previa da impresión (con textos completos)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Mostrar a gráfica" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Ver os datos GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Non se atopou a ligazón" @@ -2854,38 +2844,38 @@ msgstr "Non se definiu ningún índice!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Empaquetado" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalidade" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Orde alfabética" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentario" @@ -2920,14 +2910,14 @@ msgstr "Vista" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estrutura" @@ -2940,12 +2930,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Buscar" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Inserir" @@ -3072,15 +3062,15 @@ msgstr[1] "%1$d filas inseridas." msgid "Error while creating PDF:" msgstr "Produciuse un erro ao crear o PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Non foi posíbel gravar a táboa recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Táboas recentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Non hai táboas recentes" @@ -3326,7 +3316,7 @@ msgid "Maximum rows to plot" msgstr "Máximo de filas que aparecen na gráfica" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Visualizar valores alleos" @@ -3740,7 +3730,7 @@ msgstr "Unha enumeración escollida da lista de valores definidos" msgid "Max: %s%s" msgstr "Tamaño máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3801,7 +3791,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Na liña" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Análise do desempeño" @@ -3840,49 +3830,49 @@ msgstr "A función %s vese afectada por un erro descoñecido; consulte %s" msgid "Click to toggle" msgstr "Prema para conmutar" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Examinar o computador:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Escoller o directorio de subida do servidor web %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Non é posíbel acceder ao directorio que designou para os envíos" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Non hai ficheiros para subir" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Baleirar" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Executar" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Imprimir" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creación" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Última actualización" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Última revisión" @@ -4003,58 +3993,58 @@ msgstr "posíbel vulnerabilidade (exploit)" msgid "numeric key detected" msgstr "detectouse unha tecla numérica" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Inserir" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Proba" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Ambos os dous" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "En ningún lugar" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Esquerda" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Dereita" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Clic" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dobre clic" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Desactivado" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Abrir" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4064,7 +4054,7 @@ msgstr "Fechado" msgid "structure" msgstr "estrutura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4074,7 +4064,7 @@ msgstr "estrutura" msgid "data" msgstr "datos" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4084,31 +4074,31 @@ msgstr "datos" msgid "structure and data" msgstr "estrutura e datos" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rápido - mostrar so as opcións mínimas que configurar" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personalizada - Mostrar todas as opción posíbeis que configurar" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizada - como debaixo, pero sen a elección rápida/personalizada" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "insercións completas" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "insercións estendidas" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "todo o anterior" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nada do anterior" @@ -6286,8 +6276,8 @@ msgstr "" "Se dispón dun nome de usuario personalizado, indíqueo aquí (por omisión é " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nome de usuario" @@ -6719,7 +6709,7 @@ msgstr "Base(s) de datos:" msgid "Table(s):" msgstr "Táboa(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Fila(s):" @@ -7349,7 +7339,7 @@ msgid "No data found for GIS visualization." msgstr "Non se atoparon datos para a visualización de GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou un conxunto baleiro (isto é, cero fileiras)." @@ -7470,11 +7460,11 @@ msgstr "" "Use a tecla do tabulador para moverse de valor en valor ou a tecla CONTROL " "combinada cunha frecha para moverse a calquera sitio" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Mostrar a consulta de SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Identificador da fileira inserida: %1$d" @@ -7525,7 +7515,7 @@ msgstr "Engadir un prefixo á táboa" msgid "Add prefix" msgstr "Engadir un prefixo" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Está realmente seguro de executar a seguinte petición?" @@ -7747,16 +7737,16 @@ msgid_plural "%s other results found" msgstr[0] "atopouse %s resultado máis" msgstr[1] "atopáronse outros %s resultados" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrar as bases de dato polo nome" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Limpar o filtro rápido" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrar os elementos polo nome" @@ -7856,17 +7846,17 @@ msgid "Drop the database (DROP)" msgstr "Eliminar a base de datos (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Só a estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estrutura e datos" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Só os datos" @@ -8293,7 +8283,7 @@ msgstr "Pór os nomes das columnas na primeira fila" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8301,7 +8291,7 @@ msgstr "Servidor" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8319,7 +8309,7 @@ msgstr "Versión do PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9467,7 +9457,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9632,7 +9622,7 @@ msgid "Library" msgstr "Biblioteca" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versión" @@ -10100,71 +10090,297 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Non se atopou o usuario escollido na táboa de privilexios." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Engadiu un usuario novo." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estatísticas de rexistro" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Intervalo temporal escollido:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Obter só as instrucións SELECT, INSERT, UPDATE e DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Retirar os datos variábeis das instrucións tipo INSERT para agrupar mellor" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" +"Escoller o rexistro a partir do que se desexa que se xeren as estatísticas." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Os resultados están agrupados polo texto da consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizador de consultas" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrucións de monitorización" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"O Monitor do phpMyAdmin pode axudar a optimizar a configuración do servidor " +"e vixiar as consultas que leven moito tempo. Para isto último hai que " +"configurar log_output en «TABLE» e ter activado slow_query_log ou " +"general_log. Lembre, porén, que general_log produce moitos datos e " +"incrementa a carga do servidor nun 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Infortunadamente, o servidor da base de datos non admite rexistrar nunha " +"táboa, que é un requisito para analizar os rexistros da base de datos co " +"phpMyAdmin. O rexistro en táboas é posíbel desde MySQL 5.1.6 e posteriores. " +"Porén, pode tamén empregar a funcionalidade de gráficas do servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Uso do monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"O navegador anova todas as gráficas que se mostran en intervalos regulares. " +"pode engadir gráficas e cambiar a taxa de anovación en «Configuración» ou " +"eliminar as gráficas que empreguen a icona da engrenaxe de cada gráfica " +"respectiva." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Para mostrar consultas a partir dos rexistros, escolla a duración de tempo " +"relevante de calquera gráfica e manteña premido o botón esquerdo do rato " +"mentres arrastra sobre a gráfica. Coa confirmación cárgase unha táboa de " +"consultas agrupadas na que se pode premer calquera instrución SELECT que " +"apareza para analizala máis polo miúdo." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Por favor note:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Activar general_log pode incrementar a carga do servidor entre un 5% e un " +"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " +"tarefa que require un traballo intensivo, polo que se recomenda escoller só " +"un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " +"se requira máis esa vixilancia." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Engadir unha gráfica" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gráfica predefinida" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variábel/eis de estado" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Escoller unha serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Vixilancias frecuentes" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ou escriba o nome da variábel:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Mostrar como valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar un divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Engadir a unidade aos valores dos datos" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Engadir esta serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Limpar esta series" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series na gráfica:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Iniciar o vixilante" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrucións/Configuración" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Rematou a redistribución/edición das gráficas" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Activar o realce" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Taxa de anovación" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Columnas da gráfica" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Ordenación das gráficas" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"A distribución das gráficas almacénase no almacenamento local do navegador. " +"Pode resultar útil exportala se a configuración é complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Restabelecer o predeterminado" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado de SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Xerado por" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Tamaño de aumento do ficheiro de datos" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Outro" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Inicio" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo total:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Fechar" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Marcar esta busca de SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiqueta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permitir que calquera usuario poida acceder a este marcador" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10185,10 +10401,6 @@ msgstr "Limpar" msgid "Bookmark this SQL query:" msgstr "Marcar esta busca de SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permitir que calquera usuario poida acceder a este marcador" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Substituír un marcador xa existente que teña o mesmo nome" @@ -10329,7 +10541,7 @@ msgstr "Exceso na comprobación" msgid "Sort" msgstr "Ordenar" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nada" @@ -10485,7 +10697,7 @@ msgstr "Efectivo" msgid "Table %1$s has been altered successfully" msgstr "Alterouse a táboa %1$s sen problemas" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Hai un erro na consulta" @@ -10643,7 +10855,7 @@ msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Produciuse un erro fatal: Só é posíbel acceder á navegación mediante AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Gardáronse as modificacións" @@ -10699,7 +10911,7 @@ msgstr "Alternar pequeno/grande" msgid "Toggle relation lines" msgstr "Conmutar as liñas de relación" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema de PDF" @@ -10759,43 +10971,43 @@ msgstr "Agregar" msgid "Active options" msgstr "Opcións activas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Creouse a páxina" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Fallou a creación da páxina" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Páxina" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar desde a páxina escollida" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportar á páxina escollida" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crear unha páxina e exportar a ela" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nome da nova páxina: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Exportar/Importar a escala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomendado" @@ -10825,7 +11037,7 @@ msgstr "Engadiuse a relación interna" msgid "Relation deleted" msgstr "Eliminouse a relación" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Produciuse un erro ao gardar as coordenadas para Deseñador." @@ -11277,217 +11489,6 @@ msgstr "" "vez, observar ou someter a base de datos a probas e desfacer o cambio se non " "se apreciaron melloras medíbeis." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrucións de monitorización" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"O Monitor do phpMyAdmin pode axudar a optimizar a configuración do servidor " -"e vixiar as consultas que leven moito tempo. Para isto último hai que " -"configurar log_output en «TABLE» e ter activado slow_query_log ou " -"general_log. Lembre, porén, que general_log produce moitos datos e " -"incrementa a carga do servidor nun 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Infortunadamente, o servidor da base de datos non admite rexistrar nunha " -"táboa, que é un requisito para analizar os rexistros da base de datos co " -"phpMyAdmin. O rexistro en táboas é posíbel desde MySQL 5.1.6 e posteriores. " -"Porén, pode tamén empregar a funcionalidade de gráficas do servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Uso do monitor:" - -#: server_status_monitor.php:485 -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 "" -"O navegador anova todas as gráficas que se mostran en intervalos regulares. " -"pode engadir gráficas e cambiar a taxa de anovación en «Configuración» ou " -"eliminar as gráficas que empreguen a icona da engrenaxe de cada gráfica " -"respectiva." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Para mostrar consultas a partir dos rexistros, escolla a duración de tempo " -"relevante de calquera gráfica e manteña premido o botón esquerdo do rato " -"mentres arrastra sobre a gráfica. Coa confirmación cárgase unha táboa de " -"consultas agrupadas na que se pode premer calquera instrución SELECT que " -"apareza para analizala máis polo miúdo." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Por favor note:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Activar general_log pode incrementar a carga do servidor entre un 5% e un " -"15%. Teña tamén en conta que xerar estatísticas a partir de rexistros é unha " -"tarefa que require un traballo intensivo, polo que se recomenda escoller só " -"un tempo limitado e desactivar general_log e baleirar a súa táboa cando non " -"se requira máis esa vixilancia." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Engadir unha gráfica" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Gráfica predefinida" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variábel/eis de estado" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Escoller unha serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Vixilancias frecuentes" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ou escriba o nome da variábel:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Mostrar como valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar un divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Engadir a unidade aos valores dos datos" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Engadir esta serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Limpar esta series" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series na gráfica:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estatísticas de rexistro" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Intervalo temporal escollido:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Obter só as instrucións SELECT, INSERT, UPDATE e DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Retirar os datos variábeis das instrucións tipo INSERT para agrupar mellor" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" -"Escoller o rexistro a partir do que se desexa que se xeren as estatísticas." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Os resultados están agrupados polo texto da consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizador de consultas" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Iniciar o vixilante" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrucións/Configuración" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Rematou a redistribución/edición das gráficas" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Activar o realce" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Taxa de anovación" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Columnas da gráfica" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Ordenación das gráficas" - -#: server_status_monitor.php:736 -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 "" -"A distribución das gráficas almacénase no almacenamento local do navegador. " -"Pode resultar útil exportala se a configuración é complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Restabelecer o predeterminado" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12603,24 +12604,24 @@ msgstr "" msgid "Wrong data" msgstr "Os datos son incorrectos" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "A empregar o marcador «%s» como consulta de navegación por omisión." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Non se creou o marcador" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Mostrar como código PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12633,21 +12634,11 @@ msgstr "" "relacionadas coa edición da grecha, caixa de selección, editar, copiar e " "eliminar ligazóns poden non funcionar despois de gravar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas cos índices da táboa «%s»" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Marcar esta busca de SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiqueta" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Non hai datos que mostrar" @@ -12723,6 +12714,12 @@ msgstr "Valores X" msgid "Y-Axis label:" msgstr "Eixo Y:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Fila de comezo" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12869,31 +12866,31 @@ msgstr "Escolla a columna que desexe mostrar" msgid "No column selected." msgstr "Non hai ningunha fileira seleccionada" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Informe de seguimento da táboa «%s»" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Creouse a versión %1$s; activouse o seguemento de %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Desactivouse o seguemento de %1$s na versión %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Activouse o seguemento de %1$s na versión %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instrucións SQL executadas." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12901,113 +12898,113 @@ msgstr "" "Pódese executar o envorcado creando e empregando unha base de datos " "temporal. Asegúrese de que goza dos privilexios para facelo." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Marque estas dúas liñas como comentario se non as precisa." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instrucións de SQL exportadas. Copie o envorcado ou execúteo." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantánea da versión %s (código SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "A definición dos datos de seguimento foi eliminada con éxito" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Eliminouse satisfactoriamente o seguimento da manipulación de datos" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Instrucións de seguimento" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s con datas de %2$s to %3$s polo usuario %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Eliminar do informe a fila de datos de seguimento" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Non hai datos" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instrución de definición de datos" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instrución de manipulación de datos" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Envorcado de SQL (descarga do ficheiro)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Envorcado de SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Esta opción substitúe a táboa e os datos que contén." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Execución de SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostrar as versións" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desactivar o seguemento para %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desactivar agora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Activar o seguemento para %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Activar agora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crear versión %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Seguir estas instrucións de definición de datos:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Seguir estas instrucións de manipulación de datos:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crear unha versión" @@ -14372,6 +14369,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definido como 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeceiras cada %s filas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/he.po b/po/he.po index 73f150df1e..6419ea8dd4 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-03 10:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hebrew %2$s" msgstr[1] "%1$s תוצאות בטבלה %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "עיון" @@ -2565,14 +2566,14 @@ msgstr "עיון" msgid "Delete the matches for the %s table?" msgstr "האם למחוק את התוצאות עבור הטבלה %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "מחיקה" @@ -2645,48 +2646,36 @@ msgctxt "Last page" msgid "End" msgstr "סיום" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "שבת" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "מספר שדות" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "יום שני" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "מאוזן" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "מאוזן (headers מסובבים)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "ניצב" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "הרצת שאילתה מועדפת" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2714,96 +2703,96 @@ msgstr "" msgid "Options" msgstr "פעולות" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "טקסטים חלקיים" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "טקסטים מלאים" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy msgid "Relational display column" msgstr "תצוגת יחסים" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy msgid "Hide browser transformation" msgstr "שינויי צורה זמינים" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "השורה נמחקה" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "יכול להיות הערכה. ראה [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "בשאילתה" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "לתצוגה זו יש לפחות מספר כזה של שורות. נא לפנות ל%sתיעוד%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "מראה שורות" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "סה\"כ" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "שאילתה לקחה %01.4f שניות" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2812,8 +2801,8 @@ msgstr "שאילתה לקחה %01.4f שניות" msgid "With selected:" msgstr "עם הנבחרים:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2824,48 +2813,48 @@ msgstr "עם הנבחרים:" msgid "Check All" msgstr "סימון הכול" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "יצוא" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "תצוגת הדפסה" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "תצוגת הדפסה (עם טקסטים מלאים)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Displaying Column Comments" msgid "Display chart" msgstr "מציג הערות עמודה" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "קישור לא נמצא" @@ -2943,38 +2932,38 @@ msgstr "אין אינדקסים מוגדרים!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "אינדקסים" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "ייחודי" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "מספור" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "איסוף" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "הערות" @@ -3008,14 +2997,14 @@ msgstr "תצוגה" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "מבנה" @@ -3028,12 +3017,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "חיפוש" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "הכנסה" @@ -3165,16 +3154,16 @@ msgstr[1] "לא נבחרו שורות" msgid "Error while creating PDF:" msgstr "מאפשר מחיקת מידע." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "אין טבלאות" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3424,7 +3413,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3777,7 +3766,7 @@ msgstr "" msgid "Max: %s%s" msgstr "מירבי: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3841,7 +3830,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "מנועים" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3882,49 +3871,49 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format msgid "Select from the web server upload directory %s:" msgstr "שמירת שרת בתוך תיקיית %s" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "ריקון" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "הדפסה" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "יצירה" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "עדכון אחרון" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "נבדק לאחרונה" @@ -4041,58 +4030,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "הכנסה" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "הבא" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "מבוטל" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4103,7 +4092,7 @@ msgstr "" msgid "structure" msgstr "מבנה" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4113,7 +4102,7 @@ msgstr "מבנה" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4125,35 +4114,35 @@ msgstr "" msgid "structure and data" msgstr "מבנה ומידע" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "השלם הכנסות" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "הכנסות מורחבות" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6209,8 +6198,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "שם משתמש:" @@ -6628,7 +6617,7 @@ msgstr "מאגרי נתונים" msgid "Table(s):" msgstr "טבלאות" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7216,7 +7205,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)." @@ -7337,11 +7326,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7398,7 +7387,7 @@ msgstr "הוספת שדה חדש" msgid "Add prefix" msgstr "הוספת שדה חדש" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7622,18 +7611,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "שינוי סדר הטבלה לפי" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7737,17 +7726,17 @@ msgid "Drop the database (DROP)" msgstr "השמטת מסד הנתונים (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "מבנה בלבד" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "מבנה ונתונים" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "נתונים בלבד" @@ -8202,7 +8191,7 @@ msgstr "שמות עמודה" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8210,7 +8199,7 @@ msgstr "מארח" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8228,7 +8217,7 @@ msgstr "גרסת PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9347,7 +9336,7 @@ msgstr "תכונות" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "תוספת" @@ -9522,7 +9511,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Persian" @@ -9994,69 +9983,284 @@ msgstr "" "הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן " "ידני. במקרה זה, אתה צריך לבצע %sטעינה מחדש של הרשאות%s לפני שאתה ממשיך." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "המשתמש שנבחר לא נמצא בטבלת ההרשאות." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "משתמש חדש נוסף." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "לשנייה" +msgstr[1] "לשנייה" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "בשימוש" +msgstr[1] "בשימוש" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "סטטיסטיקת שורה" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "בחירת הכל" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "סוג שאילתה" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "הוספת שדה חדש" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "שינוי שם מאגר נתונים אל" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "בחירת טבלאות" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "הוספת משתמש חדש" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "שאילתת SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "שבת" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "רענון" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "הוספת/מחיקת עמודות שדה" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "תוצאת SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "נוצר ע\"י" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "קבצי נתונים" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "אחר" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "מצב" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "סה\"כ" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "זמן" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "סגירה" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "זמן" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "הכנס שאילתת SQL זאת למועדפים" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "תווית" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10078,10 +10282,6 @@ msgstr "לוח שנה" msgid "Bookmark this SQL query:" msgstr "הכנס שאילתת SQL זאת למועדפים" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "אפשר לכל משתמש לגשת לכתובת מועדפת זאת" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10207,7 +10407,7 @@ msgstr "בדיקת טבלאות בעלות תקורה" msgid "Sort" msgstr "סידור" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10379,7 +10579,7 @@ msgstr "יעיל" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10548,7 +10748,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "שינויים נשמרו" @@ -10606,7 +10806,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "סינית מסורתית" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10680,52 +10880,52 @@ msgstr "יצירה" msgid "Active options" msgstr "אפשרויות טבלה" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "טבלה %s נמחקה" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "דפים" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "קבצי ייבוא" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "יצירת אינדקס חדש" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "שם משתמש" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "לא נבחרו שורות" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10755,7 +10955,7 @@ msgstr "יחסים פנימיים" msgid "Relation deleted" msgstr "תצוגת יחסים" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11177,206 +11377,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "הוספת שדה חדש" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "שינוי שם מאגר נתונים אל" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "בחירת טבלאות" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "הוספת משתמש חדש" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "שאילתת SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "סטטיסטיקת שורה" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "בחירת הכל" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "סוג שאילתה" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "לשנייה" -msgstr[1] "לשנייה" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "בשימוש" -msgstr[1] "בשימוש" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "שבת" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "רענון" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "הוספת/מחיקת עמודות שדה" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12315,49 +12315,39 @@ msgstr "" msgid "Wrong data" msgstr "אין מאגרי נתונים" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "הסימנייה %s נוצרה" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "בדיקת תקינות SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "בעיות עם אינדקסים של טבלה `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "הכנס שאילתת SQL זאת למועדפים" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "תווית" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12450,6 +12440,12 @@ msgstr "ערך" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "שבת" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12601,146 +12597,146 @@ msgstr "בחירת שדה להצגה" msgid "No column selected." msgstr "לא נבחרו שורות" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "אין מאגרי נתונים" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "נתונים" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "גרסת שרת" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "גרסת שרת" @@ -13907,6 +13903,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "הרצת שאילתה מועדפת" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/hi.po b/po/hi.po index 85c2b97598..6d0e3b7d24 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-09 12:34+0200\n" "Last-Translator: Ghanshyam Bagul \n" "Language-Team: Hindi \n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "ढूंढें" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "ढूंढें" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "जाएँ" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "मुख्यनाम" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "वर्णन" @@ -107,7 +107,7 @@ msgstr "" "ये %s फ़ाइल तंत्र में उपलब्ध नहीं है, कृपया अधिक जानकारी के लिए www.phpmyadmin.net " "वेबसाईट पर जाएँ।" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s डेटाबेस बनाया गया है." @@ -137,7 +137,7 @@ msgstr "टेबल टिप्पणि:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "स्तम्भ" @@ -160,7 +160,7 @@ msgstr "स्तम्भ" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "प्रकार/किस्म" @@ -177,7 +177,7 @@ msgstr "प्रकार/किस्म" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "शून्य" @@ -192,7 +192,7 @@ msgstr "शून्य" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "तयशुदा" @@ -234,9 +234,9 @@ msgstr "टिप्पणी" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "नहीं" @@ -261,9 +261,9 @@ msgstr "नहीं" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "हाँ" @@ -316,7 +316,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "टेबल" @@ -398,7 +398,7 @@ msgstr "ट्रैक की गयी टेबलएं" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "डाटाबेस" @@ -406,17 +406,17 @@ msgstr "डाटाबेस" msgid "Last version" msgstr "पिछला संस्करण" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "बनाया" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "अद्यतन" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "स्थिति" @@ -429,7 +429,7 @@ msgstr "स्थिति" msgid "Action" msgstr "कार्य" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "दिखाओ" @@ -438,18 +438,18 @@ msgid "Delete tracking data for this table" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "रद्द" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "सक्रिय" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "निष्क्रिय" @@ -457,11 +457,11 @@ msgstr "निष्क्रिय" msgid "Versions" msgstr "संस्करण" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "ट्रैकिंग रिपोर्ट" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "संरचना क्षणचित्र" @@ -663,7 +663,7 @@ msgstr "अक्षर सेट रूपांतरण पुस्तका msgid "Could not load import plugins, please check your installation!" msgstr "आयात प्लगइन्स नहीं लोड किये जा सके। कृपया अपनी संस्थापना जाँचें!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "बुकमार्क %s बनाया" @@ -688,7 +688,7 @@ msgstr "" "पिछले भाग पर कोई डेटा विश्लेषित नहीं किया गया, इसका मतलब है की जब तक आप php समय " "सीमा नहीं बढ़ाते तब तक phpMyAdmin आयात के लिए सक्षम नहीं है." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -893,7 +893,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" बयान अक्षम हैं." @@ -902,7 +902,7 @@ msgstr "\"DROP DATABASE\" बयान अक्षम हैं." msgid "Do you really want to execute \"%s\"?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "आप एक पूरा डॅटाबेस मिटाने जा रहे हैं!" @@ -991,8 +991,8 @@ msgstr "विशेषाधिकारों को पुनः लोड msgid "Removing Selected Users" msgstr "चयनित प्रयोक्ताओं को हटायें" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "बंद" @@ -1118,13 +1118,13 @@ msgstr "बिट्स" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "किलोबाइट" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "मेगाबाइट" @@ -1163,7 +1163,7 @@ msgid "Traffic" msgstr "व्यस्तता" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "सेटिंग्स" @@ -1183,13 +1183,14 @@ msgstr "चार्ट को जाली (grid) पर लगाएँ" msgid "Please add at least one variable to the series" msgstr "कृपया, श्रृंखला में कम से कम एक चर (variable) ज़रूर जोड़ें" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "कुछ नहीं" @@ -1293,7 +1294,7 @@ msgstr "सेटिंग्स बदलें" msgid "Current settings" msgstr "वर्तमान सेटिंग्स" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "चार्ट शीर्षक" @@ -1383,7 +1384,7 @@ msgstr "परिणाम को समझाएँ" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "समय" @@ -1481,7 +1482,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "आयात करें" @@ -1538,7 +1539,7 @@ msgid "Cancel" msgstr "रद्द" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "लोड हो रहा है" @@ -1692,10 +1693,10 @@ msgstr "क्वॅरी बॉक्स छिपाएँ" msgid "Show query box" msgstr "क्वॅरी बॉक्स दिखाएँ" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1705,7 +1706,7 @@ msgstr "सम्पादन" msgid "No rows selected" msgstr "कोई पंक्ति चयनित नहीं" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1787,7 +1788,7 @@ msgstr "डॅटा बिन्दु सामग्री" msgid "Ignore" msgstr "उपेक्षा करें" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "प्रतिलिपि करें" @@ -1805,7 +1806,7 @@ msgstr "लाईन समाप्त होता है" msgid "Polygon" msgstr "बहुभुज" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "ज्यामिति" @@ -2293,31 +2294,31 @@ msgstr "प्रति घंटा" msgid "per day" msgstr "प्रतिदिन" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "फ़ॉन्ट का आकार" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "आरोही" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2336,7 +2337,7 @@ msgstr "स्तम्भ" msgid "Sort:" msgstr "सॉर्ट" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2463,8 +2464,8 @@ msgstr[0] "%s टेबल के अंदर %s मैच हैं." msgstr[1] "%s टेबल के अंदर %s मैच हैं." #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "ब्राउज़" @@ -2473,14 +2474,14 @@ msgstr "ब्राउज़" msgid "Delete the matches for the %s table?" msgstr "इस %s टेबल से मैच हटाएँ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "मिटाएँ" @@ -2554,45 +2555,34 @@ msgctxt "Last page" msgid "End" msgstr "आखरी" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start row:" -msgstr "क्षेत्र रोयाँ" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "पंक्तियोंकी की संख्या:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "More" msgid "Mode:" msgstr "अधिक" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "समतल" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "खडा" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "कुंजी सॉर्ट" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2619,91 +2609,91 @@ msgstr "कुंजी सॉर्ट" msgid "Options" msgstr "विकल्प" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "आंशिक पाठ" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "पूर्ण पाठ" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "कुंजी संबंधपरक" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "संबंधपरक प्रदर्शन स्तंभ" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "द्विआधारी सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "द्विआधारी सामग्री को हेक्स सामग्री की तरह प्रदशित करें" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "सामग्री दिखाने" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "रौ को डिलीट कर दिया" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "शायद अनुमानित हैं. [doc@faq3-11]FAQ 3.11[/doc] देखें" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दस्तावेज़%s पढ़ें." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "रौ देखिये" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "कुल" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "क्वरी को %01.4f सेकेंड का समय लगा" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2712,8 +2702,8 @@ msgstr "क्वरी को %01.4f सेकेंड का समय लग msgid "With selected:" msgstr "चुने हुओं को:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2724,47 +2714,47 @@ msgstr "चुने हुओं को:" msgid "Check All" msgstr "सभी को चेक करें" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "निर्यात" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "दृश्य बनाइये" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "छपाई द्रश्य" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display Features" msgid "Display chart" msgstr "फीचरस दिखाओ" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "लिंक नहीं मिला" @@ -2843,38 +2833,38 @@ msgstr "परिभाषित सूचकांक नहीं पाए #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "सूचकांक" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "अद्वितीय" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "जमा" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "प्रमुखता" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "क्रम में करें" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "टिप्पणी" @@ -2907,14 +2897,14 @@ msgstr "दृश्य" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "संरचना" @@ -2927,12 +2917,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "ढूंढें" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "इनसर्ट" @@ -3063,19 +3053,19 @@ msgstr[1] "बहुवचन %1$d पंक्तिया डाली।" msgid "Error while creating PDF:" msgstr "डाटा पढने की अनुमति देता है" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not save configuration" msgid "Could not save recent table" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "टेबल गणना" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3327,7 +3317,7 @@ msgid "Maximum rows to plot" msgstr "प्रदर्शित रो की अधिकतम संख्या" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "विदेशी मूल्य ब्राउस करें" @@ -3683,7 +3673,7 @@ msgstr "" msgid "Max: %s%s" msgstr "अधिकतम: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3744,7 +3734,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "इनलाइन" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "रूपरेखा" @@ -3787,49 +3777,49 @@ msgstr "%s कार्यक्षमताएक एक बग के द् msgid "Click to toggle" msgstr "चयन करने के लिए क्लिक करें." -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "अपना कंप्यूटर ब्राउज़ करें:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "अपने वेब सर्वर की अपलोड डिरेक्टरी से चुने %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "आपकी अपलोड दिरेक्टोरी तक पहुंचा नहीं जा सकता" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "अपलोड करने के लिए फाइल उपलब्ध नहीं" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "खाली" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "छापें" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "रचना" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "पिछला नवीनीकरण" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "पिछली जाँच" @@ -3951,60 +3941,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "घुसाएं" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "जाँच" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "दोनों" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 #, fuzzy #| msgid "Height" msgid "Right" msgstr "ऊँचाई" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "अक्षम" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "खोले" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "बंद" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4014,7 +4004,7 @@ msgstr "बंद" msgid "structure" msgstr "संरचना" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4024,7 +4014,7 @@ msgstr "संरचना" msgid "data" msgstr "डेटा" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4034,31 +4024,31 @@ msgstr "डेटा" msgid "structure and data" msgstr "संरचना और डेटा" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "कस्टम - उपरोक्त की तरह लेकिन जल्दी / कस्टम विकल्प के बिना" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "पूरा इनसर्टस" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "विस्तृत इनसर्टस" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ऊपर के दोनों" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "उपरोक्त में से कोई भी नहीं" @@ -6180,8 +6170,8 @@ msgid "" msgstr "" "अगर आप एक कस्टम यूसर हैं,तो यहाँ निर्दिष्ट करें, (defaults to [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "यूसर नाम" @@ -6589,7 +6579,7 @@ msgstr "डाटाबेस(s)" msgid "Table(s):" msgstr "टेबल(s) :" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "रोयाँ" @@ -7159,7 +7149,7 @@ msgid "No data found for GIS visualization." msgstr "चार्ट के लिए कोई डेटा नहीं मिला" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ने एक खाली परिणाम सेट लोताया" @@ -7286,11 +7276,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL क्वेरी शो" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "इनसर्ट रो id: %1$d" @@ -7347,7 +7337,7 @@ msgstr "अनुक्रमणिका जोड़" msgid "Add prefix" msgstr "अनुक्रमणिका जोड़" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7571,18 +7561,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "टेबल क्रमांक को बदलिये " -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7686,17 +7676,17 @@ msgid "Drop the database (DROP)" msgstr "डेटाबेस को ड्रप करे" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "केवल संरचना" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "संरचना और डाटा" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "केवल डाटा" @@ -8135,7 +8125,7 @@ msgstr "काँलम नाम प्रथम रो में" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8143,7 +8133,7 @@ msgstr "होस्ट" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8161,7 +8151,7 @@ msgstr "संस्करण" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9313,7 +9303,7 @@ msgstr "विशेषता" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "अतिरिक्त" @@ -9486,7 +9476,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "संस्करण" @@ -9948,70 +9938,294 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "आपने नया यूसर बना लिया" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "सेकंड" +msgstr[1] "सेकंड" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "मिनट" +msgstr[1] "मिनट" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "आँकड़े दिखाएँ" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "पेज चुनिये" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "क्वरी प्रकार" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add index" +msgid "Add chart" +msgstr "अनुक्रमणिका जोड़" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "डेटाबेस को हटा दे" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "टेबल चुनिये" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "अवैध टेबल नाम" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "एक नया सर्वर जोडें" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL क्वरी" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start Monitor" +msgstr "क्षेत्र रोयाँ" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "उजागर सक्षम" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "ताज़ा करना" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Textarea columns" +msgid "Chart columns" +msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "मूलभूत मान को बहाल" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQLपरिणाम" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "द्वारा उत्पन्न" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "डेटा फ़ाइलें" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "अन्य" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "स्टार्टअप" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "कुल समय:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "समय" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "बंद" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "समय" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "इस SQL-क्वरी को बुकमार्क कीजिये" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "लेबल" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10032,10 +10246,6 @@ msgstr "स्पष्ट" msgid "Bookmark this SQL query:" msgstr "इस SQL-क्वरी को बुकमार्क कीजिये " -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "हर उपयोकर्ता को अनुमति दें इस बुकमार्क का उपयोग करने के लिए" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "एक ही नाम के सभी बुकमार्क्स बदल दें" @@ -10161,7 +10371,7 @@ msgstr "ओवर्हेअद वाली तालुकाओं को msgid "Sort" msgstr "सॉर्ट" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "कोई नहीं" @@ -10328,7 +10538,7 @@ msgstr "वास्तविक" msgid "Table %1$s has been altered successfully" msgstr "%1$s टेबल को सफलतापूर्वक बदल दिया गया है" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -10481,7 +10691,7 @@ msgstr "ज़िप संग्रह में त्रुटि" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "संशोधनों को बचाया गया है" @@ -10539,7 +10749,7 @@ msgstr "टोग्ल छोटे/बड़े" msgid "Toggle relation lines" msgstr "संबंध चयन करने के लिए क्लिक करें :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10615,47 +10825,47 @@ msgstr "कुल" msgid "Active options" msgstr "सक्रिय विकल्प" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "पेज बना दिया गया है" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "पेज" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "चयनित पेज से आयात" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "चयनित पेज को निर्यात" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "एक पेज बनाएँ और इसमें निर्यात करिएँ" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "नया पेज के नाम" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "निर्यात/आयात पैमाने पर" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "सिफारिश" @@ -10685,7 +10895,7 @@ msgstr "आंतरिक संबंध जोड़ा." msgid "Relation deleted" msgstr "रिश्ते को नष्ट कर दिया" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "डिजाइनर के लिए निर्देशांक बचाने में त्रुटि आ रही है" @@ -11103,215 +11313,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add index" -msgid "Add chart" -msgstr "अनुक्रमणिका जोड़" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "डेटाबेस को हटा दे" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "टेबल चुनिये" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "अवैध टेबल नाम" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "एक नया सर्वर जोडें" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL क्वरी" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "आँकड़े दिखाएँ" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "पेज चुनिये" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "क्वरी प्रकार" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "सेकंड" -msgstr[1] "सेकंड" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "मिनट" -msgstr[1] "मिनट" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start Monitor" -msgstr "क्षेत्र रोयाँ" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "उजागर सक्षम" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "ताज़ा करना" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Textarea columns" -msgid "Chart columns" -msgstr "पाठ क्षेत्रपाठ क्षेत्र कोलम" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "मूलभूत मान को बहाल" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12255,26 +12256,26 @@ msgstr "" msgid "Wrong data" msgstr "कोइ डाटाबेस नहिं" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "बुकमार्क %s बनाया" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP कोड की तरह दिखाएँ" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL मान्य" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12286,21 +12287,11 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` टेबल के अनुक्रमित के साथ समस्याएँ" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "इस SQL-क्वरी को बुकमार्क कीजिये" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "लेबल" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12400,6 +12391,12 @@ msgstr "मूल्य" msgid "Y-Axis label:" msgstr "Y Axis लेबल" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Textarea rows" +msgid "Start row:" +msgstr "क्षेत्र रोयाँ" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12552,34 +12549,34 @@ msgstr "प्रदर्शित करने के लिए काँल msgid "No column selected." msgstr "कोई पंक्ति चयनित नहीं" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "टेबल `%s` की ट्रैकिंग रिपोर्ट" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "संस्करण %s बन चूका है, ट्रैकिंग %s.%s के लिए सक्रिय" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ट्रैकिंग सक्रिय है" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL कथन चलाएँ" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12587,125 +12584,125 @@ msgstr "" "आप दुम्प को क्रियान्वित कर सकते हैं एक अस्थायी डेटाबेस का उपयोग करें. सुनिश्चित करें कि आप " "ऐसा करने के लिए विशेषाधिकार हैं कृपया." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "इन दो लाइन को टिप्पणी बना दें अगर आपको इनकी आवश्यकता नहीं है" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL कथन निर्यात. कृपया दुम्प को या तो कॉपी करें य फिर क्रियान्वित करें" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "संस्करण %s क्षणचित्र (SQL कोड)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "ट्रैकिंग कि स्थिति" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%s दिखाएँ तारीख %s से %s तक, उपयोक्ता %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "इस टेबल के लिए ट्रैकिंग डेटा हटाएँ" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "कोइ डाटाबेस नहिं" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "तिथि" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "डेटा परिभाषा कथन" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "डेटा हेरफेर कथन" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL दुम्प ( फाइल डाउनलोड )" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL ढेर लगाना" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "यह विकल्प आपके टेबल और डेटा को बदल देगा." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL अमल" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "%s के रूप में निर्यात" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "संस्करण दिखाएँ" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "ट्रैकिंग निष्क्रिय %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "निष्क्रिय करे" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "ट्रैकिंग सक्रिय %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "सक्रिय करे" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "%s संस्करण बनायें %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "डेटा परिभाषा पर नज़र रखना" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "डेटा आपरेशन पर नज़र रखना" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "संस्करण बनाएँ" diff --git a/po/hr.po b/po/hr.po index 13dd8c6864..b11820d301 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian %s" msgstr[1] "%s poklapanja unutar tablice %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Pretraživanje" @@ -2651,14 +2652,14 @@ msgstr "Pretraživanje" msgid "Delete the matches for the %s table?" msgstr "Obriši rezultate pretrage za %s tablicu?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Izbriši" @@ -2731,48 +2732,36 @@ msgctxt "Last page" msgid "End" msgstr "Završetak" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Sub" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Broj polja" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Pon" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vodoravno" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vodoravno (okrenuta zaglavlja)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "uspravno" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši favorizirani upit" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Presloži po ključu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2799,76 +2788,76 @@ msgstr "Presloži po ključu" msgid "Options" msgstr "Opcije" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Djelomični tekstovi" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Polje za prikaz relacija" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pretvaranje preglednika" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Redak je izbrisan" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Eliminiraj" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Može biti približno. Pogledajte [doc@faq3-11]ČPP 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "unutar upita" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2876,21 +2865,21 @@ msgid "" msgstr "" "Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Prikazivanje redaka" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2899,8 +2888,8 @@ msgstr "Upit je trajao %01.4f sek" msgid "With selected:" msgstr "S odabirom:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2911,48 +2900,48 @@ msgstr "S odabirom:" msgid "Check All" msgstr "Označi sve" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operacije rezultata upita" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Prikaz ispisa" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Prikaz ispisa (s potpunim tekstovima)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Prikaži PDF shemu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Veza nije pronađena" @@ -3035,38 +3024,38 @@ msgstr "Nema definiranog indeksa!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jedinstveno" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakirano" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Najvažnije" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Uspoređivanje" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentar" @@ -3100,14 +3089,14 @@ msgstr "Prikaz" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Strukturu" @@ -3120,12 +3109,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Traži" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Umetni" @@ -3259,18 +3248,18 @@ msgstr[1] "Umetnuto redaka: %1$d." msgid "Error while creating PDF:" msgstr "Dopušta čitanje podataka." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Nema tablica" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Provjeri tablicu" @@ -3521,7 +3510,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pretraži strane vrijednosti" @@ -3878,7 +3867,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Najv: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3941,7 +3930,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Pogoni" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Izrada profila" @@ -3982,50 +3971,50 @@ msgstr "Na funkcionalnost %s utječe poznati nedostatak. Pogledajte %s" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Pretraži računalo:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Ispiši" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Izrada" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Posljednje ažuriranje" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Posljednja provjera" @@ -4155,60 +4144,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Test" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Oboje" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nigdje" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Lijevo" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Desno" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Onemogućeno" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Otvori" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Navodnik nije zatvoren" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4219,7 +4208,7 @@ msgstr "Navodnik nije zatvoren" msgid "structure" msgstr "Strukturu" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4229,7 +4218,7 @@ msgstr "Strukturu" msgid "data" msgstr "Podatci" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4241,35 +4230,35 @@ msgstr "Podatci" msgid "structure and data" msgstr "Strukturu i podatke" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Dovrši umetanja" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Proširena umetanja" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "oboje navedeno" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ništa od navedenog" @@ -6362,8 +6351,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Korisničko ime:" @@ -6787,7 +6776,7 @@ msgstr "Baze podataka" msgid "Table(s):" msgstr "Tablice" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7447,7 +7436,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)." @@ -7575,11 +7564,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Prikazivanje SQL upita" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Umetnut ID retka: %1$d" @@ -7634,7 +7623,7 @@ msgstr "Dodaj prefiks" msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7859,18 +7848,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "naziv tablice" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7990,17 +7979,17 @@ msgid "Drop the database (DROP)" msgstr "Ukloni bazu podataka" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo strukturu" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Strukturu i podatke" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podatke" @@ -8453,7 +8442,7 @@ msgstr "Nazive polja stavi u prvi red" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8461,7 +8450,7 @@ msgstr "Računalo" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8479,7 +8468,7 @@ msgstr "PHP verzija" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9705,7 +9694,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9880,7 +9869,7 @@ msgid "Library" msgstr "Biblioteka" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Perzijski" @@ -10365,69 +10354,288 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Odabrani korisnik nije pronađen u tablici privilegija." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "po sekundi" +msgstr[1] "po sekundi" +msgstr[2] "po sekundi" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "u upotrebi" +msgstr[1] "u upotrebi" +msgstr[2] "u upotrebi" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistike redova" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Odaberite tablice" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vrsta upita" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Dodaj %s polja" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Preimenuj bazu podataka u" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Odaberite tablice" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Neispravan naziv tablice" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Dodaj novog korisnika" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL upit" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sub" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Osvježi" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Dodaj/Izbriši stupce polja" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Resetiraj na zadano" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generirano s" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Veličina porasta datoteke podataka" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostalo" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Stanje" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Ukupno" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vrijeme" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zatvori" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vrijeme" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Favoriziraj ovaj SQL upit" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Oznaka" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Neka svi korisnici imaju pristup ovom favoritu" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10449,10 +10657,6 @@ msgstr "Kalendar" msgid "Bookmark this SQL query:" msgstr "Favoriziraj ovaj SQL upit" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Neka svi korisnici imaju pristup ovom favoritu" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamijeni postojećim favoritom istog naziva" @@ -10591,7 +10795,7 @@ msgstr "Provjeri za prepunjene tablice" msgid "Sort" msgstr "Presloži" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10761,7 +10965,7 @@ msgstr "Na snazi" msgid "Table %1$s has been altered successfully" msgstr "Tablica %1$s uspješno je izmijenjena" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10935,7 +11139,7 @@ msgstr "Pogreška u ZIP arhivi:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Izmjene su spremljene" @@ -10993,7 +11197,7 @@ msgstr "Malo / Veliko" msgid "Toggle relation lines" msgstr "Za odabir relacije pritisnite:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Uvoz / Izvoz koordinate iz PDF sheme" @@ -11068,52 +11272,52 @@ msgstr "Izradi" msgid "Active options" msgstr "Opcije tablice" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tablica %1$s je izrađena." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Neuspješno kreiranje stranice" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "stranice" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Uvezi datoteke" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izradi novi indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Korisničko ime" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Uvoz / Izvor prema omjeru" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "preporučeno" @@ -11143,7 +11347,7 @@ msgstr "Dodane interne relacije" msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Pogreška tijekom spremanja koordinata za Kreatora." @@ -11573,210 +11777,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Dodaj %s polja" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Preimenuj bazu podataka u" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Odaberite tablice" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Neispravan naziv tablice" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Dodaj novog korisnika" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL upit" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistike redova" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Odaberite tablice" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vrsta upita" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "po sekundi" -msgstr[1] "po sekundi" -msgstr[2] "po sekundi" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "u upotrebi" -msgstr[1] "u upotrebi" -msgstr[2] "u upotrebi" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sub" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Osvježi" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Dodaj/Izbriši stupce polja" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Resetiraj na zadano" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12845,49 +12845,39 @@ msgstr "" msgid "Wrong data" msgstr "Nema baza podataka" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Izrađen je favorit %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Prikazivanje kao PHP koda" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Provjera valjanosti SQL-a" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi s indeksima tablice `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Favoriziraj ovaj SQL upit" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Oznaka" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12982,6 +12972,12 @@ msgstr "Vrijednost" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Sub" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13134,150 +13130,150 @@ msgstr "Odaberi polje za prikaz" msgid "No column selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Dopušta umetanje i zamjenu podataka." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nema baza podataka" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Podaci" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Vrsta izvoza" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Deactivate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Uredi postavke za %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiviraj sada" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Izradi relaciju" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Izradi relaciju" @@ -14515,6 +14511,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "najv. uzastopnih veza" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izvrši favorizirani upit" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/hu.po b/po/hu.po index d8650da454..ed08ccfded 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-16 15:29+0200\n" "Last-Translator: Ádám Papp-Kuster \n" -"Language-Team: Hungarian " -"\n" +"Language-Team: Hungarian \n" "Language: hu\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -47,7 +47,7 @@ msgid "Search:" msgstr "Keresés" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,24 +73,24 @@ msgstr "Keresés" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Indítás" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Kulcsnév" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Leírás" @@ -109,7 +109,7 @@ msgstr "" "A(z) %s fájl nem elérhető ezen a rendszeren, keresse fel a www.phpmyadmin." "net oldalt további információkért." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "A(z) %1$s adatbázis elkészült." @@ -139,7 +139,7 @@ msgstr "Tábla megjegyzése" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Oszlop" @@ -162,7 +162,7 @@ msgstr "Oszlop" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Típus" @@ -179,7 +179,7 @@ msgstr "Típus" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Nulla" @@ -194,7 +194,7 @@ msgstr "Nulla" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Alapértelmezett" @@ -236,9 +236,9 @@ msgstr "Megjegyzések" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nem" @@ -263,9 +263,9 @@ msgstr "Nem" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Igen" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tábla" @@ -399,7 +399,7 @@ msgstr "Nyomon követett táblák" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Adatbázis" @@ -407,17 +407,17 @@ msgstr "Adatbázis" msgid "Last version" msgstr "Legutolsó verzió" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Létrehozva" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "frissítve" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Állapot" @@ -430,7 +430,7 @@ msgstr "Állapot" msgid "Action" msgstr "Művelet" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Megjelenítés" @@ -439,18 +439,18 @@ msgid "Delete tracking data for this table" msgstr "Tábla nyomkövetési adatainak törlése" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Eldobás" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktív" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "nem aktív" @@ -458,11 +458,11 @@ msgstr "nem aktív" msgid "Versions" msgstr "Verziók" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Nyomkövetési jelentés" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Szerkezeti pillanatkép" @@ -672,7 +672,7 @@ msgstr "" "Nem lehetett betölteni az importáló beépülő modulokat. Kérjük, ellenőrizze a " "telepítését!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "A(z) %s könyvjelző elkészült" @@ -700,7 +700,7 @@ 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:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -903,9 +903,6 @@ msgstr "" #: index.php:489 #, php-format -#| msgid "" -#| "ditional features for working with linked tables have been ctivated. To d " -#| "out why click %shere%s." msgid "" "The phpMyAdmin configuration storage is not completely configured, some " "extended features have been deactivated. To find out why click %shere%s." @@ -932,7 +929,7 @@ msgstr "" "A szerver Suhosinnal fut. Kérjük, hogy a lehetséges problémáknak nézzen " "utána a %sdokumentációban%s." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "A \"DROP DATABASE\" utasítást letiltották." @@ -941,7 +938,7 @@ msgstr "A \"DROP DATABASE\" utasítást letiltották." msgid "Do you really want to execute \"%s\"?" msgstr "Valóban végre szeretné hajtani: „%s”?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Ön a teljes adatbázis MEGSEMMISÍTÉSÉRE készül!" @@ -984,7 +981,6 @@ msgstr "Index szerkesztése" #: js/messages.php:44 libraries/display_indexes.lib.php:199 #: libraries/display_indexes.lib.php:205 #, php-format -#| msgid "Add %d column(s) to index" msgid "Add %s column(s) to index" msgstr "%s oszlop hozzáadása az indexhez" @@ -1026,8 +1022,8 @@ msgstr "A jogok újratöltése" msgid "Removing Selected Users" msgstr "A kijelölt felhasználók törlése" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Bezárás" @@ -1052,7 +1048,6 @@ msgid "Connections / Processes" msgstr "Kapcsolatok / Folyamatok" #: js/messages.php:70 -#| msgid "Cannot load or save configuration" msgid "Local monitor configuration incompatible" msgstr "A helyi megfigyelés beállításai nem kompatibilisek" @@ -1151,13 +1146,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1196,7 +1191,7 @@ msgid "Traffic" msgstr "Forgalom" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Beállítások" @@ -1216,13 +1211,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Nincs" @@ -1320,7 +1316,7 @@ msgstr "Beállítások megváltoztatása" msgid "Current settings" msgstr "Jelenlegi beállítások" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Diagramcím" @@ -1400,7 +1396,7 @@ msgstr "A kimenet magyarázata" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Idő" @@ -1410,7 +1406,6 @@ msgid "Total time:" msgstr "Teljes idő:" #: js/messages.php:166 -#| msgid "Profiling" msgid "Profiling results" msgstr "Eredmények elemzése" @@ -1500,13 +1495,12 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importálás" #: js/messages.php:191 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Megfigyelési beállítások importálása" @@ -1558,7 +1552,7 @@ msgid "Cancel" msgstr "Mégse" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Betöltés" @@ -1708,10 +1702,10 @@ msgstr "SQL-lekérdezési panelek elrejtése" msgid "Show query box" msgstr "Lekérdezési doboz megjelenítése" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1721,7 +1715,7 @@ msgstr "Módosítás" msgid "No rows selected" msgstr "Nem jelölte ki a sort" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1799,7 +1793,6 @@ msgid "Query results" msgstr "Lekérdezési eredmények" #: js/messages.php:295 -#| msgid "Data pointer size" msgid "Data point content" msgstr "Adatmutató tartalma" @@ -1808,7 +1801,7 @@ msgstr "Adatmutató tartalma" msgid "Ignore" msgstr "Kihagyás" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Másolás" @@ -1817,7 +1810,6 @@ msgid "Point" msgstr "Pont" #: js/messages.php:304 -#| msgid "Lines terminated by" msgid "Linestring" msgstr "Sorvég-karakter" @@ -1825,7 +1817,7 @@ msgstr "Sorvég-karakter" msgid "Polygon" msgstr "Sokszög" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometria" @@ -2304,31 +2296,31 @@ msgstr "óránként" msgid "per day" msgstr "naponta" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "A létező beállító fájl (%s) nem olvasható." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Betűméret" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Növekvő" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2347,7 +2339,7 @@ msgstr "Oszlop" msgid "Sort:" msgstr "Rendezés" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2472,8 +2464,8 @@ msgstr[0] "%1$s találat ebben: %2$s" msgstr[1] "%1$s találat ebben: %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Tartalom" @@ -2482,14 +2474,14 @@ msgstr "Tartalom" msgid "Delete the matches for the %s table?" msgstr "Törli a találatokat a %s táblában?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Törlés" @@ -2551,45 +2543,34 @@ msgctxt "Last page" msgid "End" msgstr "Vége" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Kezdő sor" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Sorok száma:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Mód" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vízszintesen" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vízszintesen (elforgatott fejlécek)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "függőlegesen" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Minden %s. sor legyen fejléc" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Kulcs szerinti rendezés" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,70 +2597,70 @@ msgstr "Kulcs szerinti rendezés" msgid "Options" msgstr "Beállítások" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Részleges szövegek" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Teljes szövegek" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relációs kulcs" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relációs megjelenítési mező" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Bináris tartalom megjelenítése" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB-tartalom megjelenítése" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Bináris tartalom megjelenítése HEX-ként" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Böngészőátalakítás elrejtése" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Jól ismert szöveg" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Jól ismert bináris" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "A sor törlése megtörtént" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Leállít" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Becsült érték lehet. Lásd [doc@faq3-11]GyIK 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "lekérdezésben" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2688,21 +2669,21 @@ 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." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Megjelenített sorok" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "összesen" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "a lekérdezés %01.4f másodpercig tartott" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2711,8 +2692,8 @@ msgstr "a lekérdezés %01.4f másodpercig tartott" msgid "With selected:" msgstr "A kijelöltekkel végzendő művelet:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2723,45 +2704,45 @@ msgstr "A kijelöltekkel végzendő művelet:" msgid "Check All" msgstr "Mind kijelölése" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportálás" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Nézet létrehozása" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Műveletek a lekérdezési eredménnyel" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Nyomtatási nézet" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Nyomtatási nézet (teljes szöveggel)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Diagram megjelenítése" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Nem található a hivatkozás" @@ -2842,38 +2823,38 @@ msgstr "Nincs meghatározott index!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexek" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Egyedi" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Csomagolt" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Számosság" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Illesztés" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Megjegyzés" @@ -2908,14 +2889,14 @@ msgstr "Nézet" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Szerkezet" @@ -2928,12 +2909,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Keresés" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Beszúrás" @@ -3060,17 +3041,17 @@ msgstr[1] "A(z) %1$d sor beszúrása megtörtént." msgid "Error while creating PDF:" msgstr "Hiba történt a PDF létrehozása közben:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "A beállítások nem tölthetők be vagy menthetők" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Legutóbbi táblák" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nincsenek utoljára használt táblák" @@ -3313,7 +3294,7 @@ msgid "Maximum rows to plot" msgstr "A megjelenítendő sorok száma" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Az idegen kulcsok böngészése" @@ -3658,7 +3639,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3719,7 +3700,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Belső" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Adatgyűjtés" @@ -3758,49 +3739,49 @@ msgstr "A(z) %s funkcióra egy ismert hiba van hatással, lásd itt: %s" msgid "Click to toggle" msgstr "Kattintson a váltáshoz" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Számítógép tallózása:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Nem elérhető a feltöltésekhez megadott könyvtár" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nincsenek feltöltendő fájlok" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Kiürítés" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Végrehajtás" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Nyomtatás" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Létrehozás" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Utolsó frissítés" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Utolsó ellenőrzés" @@ -3917,58 +3898,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Beszúrás" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Teszt" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Mind" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Bal" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Jobb" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Letiltott" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Nyitott" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Zárt" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3978,7 +3959,7 @@ msgstr "Zárt" msgid "structure" msgstr "szerkezet" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3988,7 +3969,7 @@ msgstr "szerkezet" msgid "data" msgstr "adat" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3998,31 +3979,31 @@ msgstr "adat" msgid "structure and data" msgstr "szerkezet és adatok" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Egyéni - az összes beállítási lehetőségeket mutatja" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "teljes beillesztések" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "kiterjesztett beillesztések" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "a fentiekből mindkettő" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "a fentiekből egyik sem" @@ -6236,8 +6217,8 @@ msgstr "" "Ha Önnek egyedi felhasználóneve van, itt megnevezheti (alapértelmezett: " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Felhasználónév" @@ -6658,7 +6639,7 @@ msgstr "Adatbázis(ok):" msgid "Table(s):" msgstr "Táblá(k):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Sorok:" @@ -7283,7 +7264,7 @@ msgid "No data found for GIS visualization." msgstr "Nem található adat a GIS megjelenítőhöz." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)." @@ -7403,11 +7384,11 @@ msgstr "" "A TAB billentyűvel értékről értékre lépkedhet, vagy a CTRL+nyilakkal bárhová " "léphet" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Megjelenítés SQL lekérdezésként" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "A beszúrt sor azonosítószáma: %1$d" @@ -7458,7 +7439,7 @@ msgstr "Tábla előtagjának lecserélése" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Valóban végre szeretné hajtani a következő lekérdezést?" @@ -7680,18 +7661,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "Adatbázisok szűrése név szerint" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7807,17 +7788,17 @@ msgid "Drop the database (DROP)" msgstr "Adatbázis eldobása (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Csak a szerkezet" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Szerkezet és adatok" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Csak az adatok" @@ -8241,7 +8222,7 @@ msgstr "A mezőneveket tegye az első sorba" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8249,7 +8230,7 @@ msgstr "Hoszt" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8267,7 +8248,7 @@ msgstr "PHP verzió" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9438,7 +9419,7 @@ msgstr "Tulajdonságok" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9603,7 +9584,7 @@ msgid "Library" msgstr "Könyvtár" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verzió" @@ -10080,71 +10061,281 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 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." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Az új felhasználó hozzáadása megtörtént." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d másodperc" +msgstr[1] "%d másodperc" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d perc" +msgstr[1] "%d perc" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Naplóstatisztikák" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Kiválasztott időtartomány:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Csak SELECT,INSERT,UPDATE és DELETE utasítások lekérése" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Változóadat eltávolítása az INSERT utasításból a jobb csoportosításért" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Válassza ki, hogy melyik naplóból szeretne statisztikát előállítani." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Az eredmények csoportosítva vannak a lekérdezés szövege szerint." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Lekérdezés elemző" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Információ" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Jegyezze meg:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Diagram hozzáadása" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Adatbázis eltávolítása" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Állapot változó(k)" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Táblák kiválasztása" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "vagy gépelje be a változó nevét:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Osztó alkalmazása" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Egység hozzáfűzése az adatértékekhez" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Új szerver hozzáadása" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL-lekérdezések" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Indítás" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Utasítások/Beállítás" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "A szövegkiemelés engedélyezése" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Frissítési időköz" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagram oszlopai" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagram elrendezés" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Visszaállítás az alapértékre" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-eredmény" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Készítette" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Az adatfájl növekedési mérete" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Egyéb" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Kezdés" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Teljes idő:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Idő" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Bezárás" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Idő" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Név" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" +"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " +"engedélyezett" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10165,12 +10356,6 @@ msgstr "Törlés" 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:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" -"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára " -"engedélyezett" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Az ugyanazon nevű könyvjelző kicserélése" @@ -10312,7 +10497,7 @@ msgstr "A felülírott táblák kijelölése" msgid "Sort" msgstr "Rendezés" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nincs" @@ -10468,7 +10653,7 @@ msgstr "Hatásos" msgid "Table %1$s has been altered successfully" msgstr "A(z) %1$s tábla módosítása sikerült" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Lekérdezési hiba" @@ -10627,7 +10812,7 @@ msgstr "Hiba a ZIP archívumban:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "A módosítások mentése megtörtént" @@ -10685,7 +10870,7 @@ msgstr "Kicsi/nagy kapcsoló" msgid "Toggle relation lines" msgstr "A kapcsolat kiválasztásához, kattintson :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "A PDF-séma importálási/exportálási koordinátái" @@ -10751,43 +10936,43 @@ msgstr "Összegzés" msgid "Active options" msgstr "Tábla beállításai" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Az oldal elkészült" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Az oldal létrehozása meghiúsult" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Oldal" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importálás a kiválasztott oldalakról" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportálás a kiválasztott oldalakra" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Oldal létrehozása és exportálás arra" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Új oldal neve: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Méretezendő exportálás/importálás" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "ajánlott" @@ -10817,7 +11002,7 @@ msgstr "A belső kapcsolat hozzáadása megtörtént" msgid "Relation deleted" msgstr "A kapcsolat törlése kész" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Hiba történt a Tervező koordinátáinak mentésekor." @@ -11243,199 +11428,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Információ" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Jegyezze meg:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Diagram hozzáadása" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Adatbázis eltávolítása" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Állapot változó(k)" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Táblák kiválasztása" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "vagy gépelje be a változó nevét:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Osztó alkalmazása" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Egység hozzáfűzése az adatértékekhez" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Új szerver hozzáadása" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL-lekérdezések" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Naplóstatisztikák" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Kiválasztott időtartomány:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Csak SELECT,INSERT,UPDATE és DELETE utasítások lekérése" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Változóadat eltávolítása az INSERT utasításból a jobb csoportosításért" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Válassza ki, hogy melyik naplóból szeretne statisztikát előállítani." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Az eredmények csoportosítva vannak a lekérdezés szövege szerint." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Lekérdezés elemző" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d másodperc" -msgstr[1] "%d másodperc" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d perc" -msgstr[1] "%d perc" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Indítás" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Utasítások/Beállítás" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "A szövegkiemelés engedélyezése" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Frissítési időköz" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagram oszlopai" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagram elrendezés" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Visszaállítás az alapértékre" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12545,48 +12537,38 @@ msgstr "" msgid "Wrong data" msgstr "Hibás adat" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" "A(z) „%s” könyvjelző használata alapértelmezett tallózás lekérdezésként." -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "A(z) %s könyvjelző elkészült" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Megjelenítés PHP kódként" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Érvényes SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probléma a(z) `%s` tábla indexeivel" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Név" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12666,6 +12648,12 @@ msgstr "X értékek" msgid "Y-Axis label:" msgstr "Y tengely címkéje:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Kezdő sor" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12813,148 +12801,148 @@ msgstr "Válassza ki a megjelenítendő oszlopot" msgid "No column selected." msgstr "Nem jelölte ki a sort" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Nyomkövetés aktív." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Nyomkövetés aktív." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL utasítások végrehajtva." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Nyomkövetési utasítások" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Nyomkövetési adat sor törlése a jelentésből" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nincs adat" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dátum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Adat definiáló utasítás" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Adat manipuláló utasítás" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL kiírás (fájl letöltés)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL kiírás" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ez az opció ki fogja cserélni a táblát és a tartalmazott adatot." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL végrehajtás" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportálás: %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Verziók megjelenítése" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Inaktiválás" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Kikapcsolás most" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "%s adatai hiányoznak" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Bekapcsolás most" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Verzió létrehozása" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Verzió létrehozása" @@ -14179,6 +14167,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "A concurrent_insert 0-ra van állítva" +#~ msgid "Headers every %s rows" +#~ msgstr "Minden %s. sor legyen fejléc" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/hy.po b/po/hy.po index 907ecb5eb6..8782738ba3 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-03-30 12:19+0200\n" "Last-Translator: Hamlet Muradyan \n" "Language-Team: Armenian %2$s" msgstr[0] "" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Թերթել" @@ -2364,14 +2365,14 @@ msgstr "Թերթել" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Հեռացնել" @@ -2433,41 +2434,32 @@ msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2494,89 +2486,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2585,8 +2577,8 @@ msgstr "" msgid "With selected:" msgstr "Նշվածները՝" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2597,45 +2589,45 @@ msgstr "Նշվածները՝" msgid "Check All" msgstr "Նշել բոլորը" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Արտահանում" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2710,38 +2702,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Համեմատումը" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2774,14 +2766,14 @@ msgstr "Ներկայացում" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2794,12 +2786,12 @@ msgstr "" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Որոնում" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "" @@ -2926,15 +2918,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3173,7 +3165,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3513,7 +3505,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3572,7 +3564,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3611,49 +3603,49 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Դատարկել" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Ստեղծում" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Վերջին թարմացումը" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Վերջին ստուգումը" @@ -3767,56 +3759,56 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Տեղադրել" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3826,7 +3818,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3836,7 +3828,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3846,31 +3838,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5804,8 +5796,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6193,7 +6185,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6749,7 +6741,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6865,11 +6857,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6918,7 +6910,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7139,16 +7131,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7246,17 +7238,17 @@ msgid "Drop the database (DROP)" msgstr "Հեռացնել տվյալների բազան (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Միայն կառուղվածքը" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Կառուցվածքն ու տվյալները" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Միայն տվյալները" @@ -7664,13 +7656,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7686,7 +7678,7 @@ msgstr "Տարբերակներ" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8720,7 +8712,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8881,7 +8873,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9326,56 +9318,249 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Status" msgid "State" msgstr "Վիճակը" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9394,10 +9579,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9523,7 +9704,7 @@ msgstr "" msgid "Sort" msgstr "Դասավորել" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9677,7 +9858,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9814,7 +9995,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9870,7 +10051,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9928,39 +10109,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9988,7 +10169,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10392,186 +10573,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11488,43 +11489,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11600,6 +11593,10 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11730,143 +11727,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/ia.po b/po/ia.po index 2a281e68e8..3344762e97 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-30 13:53+0200\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creation" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Ultime actualisation" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Ultime controlo" @@ -3820,54 +3812,54 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3877,7 +3869,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3887,7 +3879,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3897,31 +3889,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5857,8 +5849,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6244,7 +6236,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6800,7 +6792,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6916,11 +6908,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6965,7 +6957,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7187,16 +7179,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7292,17 +7284,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7706,13 +7698,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7726,7 +7718,7 @@ msgstr "Version de PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Base de datos:" @@ -8752,7 +8744,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8913,7 +8905,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9358,54 +9350,247 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Stato" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9424,10 +9609,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9553,7 +9734,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9707,7 +9888,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9842,7 +10023,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9898,7 +10079,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9956,39 +10137,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10016,7 +10197,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10420,186 +10601,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11516,43 +11517,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11628,6 +11621,10 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11756,143 +11753,143 @@ msgstr "Selige columna de monstrar:" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/id.po b/po/id.po index baaa165ca9..82aa8a1ab6 100644 --- a/po/id.po +++ b/po/id.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-13 17:32+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" +"PO-Revision-Date: 2013-06-20 14:00+0200\n" "Last-Translator: Dadan Setia \n" "Language-Team: Indonesian " "\n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Cari:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,24 +72,24 @@ msgstr "Cari:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Kirim" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nama kunci" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Deskripsi" @@ -108,7 +108,7 @@ msgstr "" "Berkas %s tidak ditemukan dalam sistem ini, harap kunjungi www.phpmyadmin." "net untuk informasi lebih lanjut." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Basis data %1$s telah dibuat." @@ -136,7 +136,7 @@ msgstr "Komentar tabel:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolom" @@ -159,7 +159,7 @@ msgstr "Kolom" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Jenis" @@ -176,7 +176,7 @@ msgstr "Jenis" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Kosong" @@ -191,7 +191,7 @@ msgstr "Kosong" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Bawaan" @@ -233,9 +233,9 @@ msgstr "Komentar" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Tidak" @@ -260,9 +260,9 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ya" @@ -294,7 +294,6 @@ msgstr "Nama basis data %1$s telah diubah menjadi %2$s" #: db_operations.php:133 #, php-format -#| msgid "Database %s has been copied to %s" msgid "Database %1$s has been copied to %2$s" msgstr "Basis data %1$s telah disalin ke %2$s" @@ -315,7 +314,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -338,7 +337,6 @@ msgstr "sedang digunakan" #: db_printview.php:117 libraries/plugins/export/ExportSql.class.php:947 #: libraries/schema/Pdf_Relation_Schema.class.php:1341 -#| msgid "Creation" msgid "Creation:" msgstr "Pembuatan:" @@ -349,7 +347,6 @@ msgstr "Pembaruan terakhir:" #: db_printview.php:135 libraries/plugins/export/ExportSql.class.php:973 #: libraries/schema/Pdf_Relation_Schema.class.php:1351 -#| msgid "Last check" msgid "Last check:" msgstr "Pemeriksaan terakhir:" @@ -392,7 +389,7 @@ msgstr "Tabel yang dilacak" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Basis data" @@ -400,17 +397,17 @@ msgstr "Basis data" msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Dibuat" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Diperbarui" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -423,7 +420,7 @@ msgstr "Status" msgid "Action" msgstr "Tindakan" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Tampilkan" @@ -432,18 +429,18 @@ msgid "Delete tracking data for this table" msgstr "Hapus pelacakan data untuk tabel ini" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Hapus" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "tidak aktif" @@ -451,11 +448,11 @@ msgstr "tidak aktif" msgid "Versions" msgstr "Versi" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Laporan pelacakan" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Snapshot struktur" @@ -520,18 +517,15 @@ msgid "Use OpenStreetMaps as Base Layer" msgstr "Gunakan OpenStreetMaps sebagai Lapisan Dasar" #: gis_data_editor.php:161 -#| msgid "SRID" msgid "SRID:" msgstr "SRID:" #: gis_data_editor.php:184 #, php-format -#| msgid "Geometry" msgid "Geometry %d:" msgstr "Geometri %d:" #: gis_data_editor.php:206 -#| msgid "Point" msgid "Point:" msgstr "Titik:" @@ -558,18 +552,15 @@ msgstr "Tambahkan titik" #: gis_data_editor.php:262 #, php-format -#| msgid "Linestring" msgid "Linestring %d:" msgstr "Deretan baris %d:" #: gis_data_editor.php:265 gis_data_editor.php:341 -#| msgid "Outer Ring" msgid "Outer ring:" msgstr "Lingkar Luar:" #: gis_data_editor.php:267 gis_data_editor.php:343 #, php-format -#| msgid "Inner Ring" msgid "Inner ring %d:" msgstr "Lingkar Dalam %d:" @@ -583,7 +574,6 @@ msgstr "Tambahkan lingkar dalam" #: gis_data_editor.php:325 #, php-format -#| msgid "Polygon" msgid "Polygon %d:" msgstr "Poligon %d:" @@ -600,15 +590,12 @@ msgid "Output" msgstr "Keluaran" #: gis_data_editor.php:402 -#| msgid "" -#| "Chose \"GeomFromText\" from the \"Function\" column and paste the below " -#| "string into the \"Value\" field" msgid "" "Choose \"GeomFromText\" from the \"Function\" column and paste the string " "below into the \"Value\" field" msgstr "" -"Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya ke " -"dalam isian \"Value\"" +"Pilih \"GeomFromText\" dari kolom \"Fungsi\" dan rekatkan string di bawahnya " +"ke dalam isian \"Value\"" #: import.php:107 #, php-format @@ -662,7 +649,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "Tidak dapat memuat plugin import, harap periksa instalasi Anda!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Markah %s dibuat" @@ -689,7 +676,7 @@ msgstr "" "phpMyAdmin tidak bisa menyelesaikan proses impor kecuali Anda menambah batas " "waktu eksekusi php." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -741,12 +728,10 @@ msgid "Server version:" msgstr "Versi Server:" #: index.php:252 -#| msgid "Protocol version" msgid "Protocol version:" msgstr "Versi protokol:" #: index.php:256 -#| msgid "User" msgid "User:" msgstr "Pengguna:" @@ -761,12 +746,10 @@ msgid "Web server" msgstr "Server web" #: index.php:286 -#| msgid "Database client version" msgid "Database client version:" msgstr "Versi klien basis data:" #: index.php:290 -#| msgid "PHP extension" msgid "PHP extension:" msgstr "Ekstensi PHP:" @@ -775,7 +758,6 @@ msgid "Show PHP information" msgstr "Tampilkan informasi PHP" #: index.php:327 -#| msgid "Version information" msgid "Version information:" msgstr "Informasi versi:" @@ -847,11 +829,10 @@ msgid "" "cookie validity configured in phpMyAdmin, because of this, your login will " "expire sooner than configured in phpMyAdmin." msgstr "" -"Parameter PHP " -"[a@http://php.net/manual/en/session.configuration.php#ini.session.gc-" -"maxlifetime@_blank]session.gc_maxlifetime[/a]anda lebih kecil dari dari " -"validitas cookie di phpMyAdmin, karenanya, login anda akan lebih berakhir " -"cepat daripada konfigurasi phpMyAdmin." +"Parameter PHP [a@http://php.net/manual/en/session.configuration.php#ini." +"session.gc-maxlifetime@_blank]session.gc_maxlifetime[/a]anda lebih kecil " +"dari dari validitas cookie di phpMyAdmin, karenanya, login anda akan lebih " +"berakhir cepat daripada konfigurasi phpMyAdmin." #: index.php:456 msgid "" @@ -910,17 +891,16 @@ msgstr "" "Server berjalan dengan Suhosin. Harap rujuk %sdokumentasi%s untuk " "kemungkinan masalah." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." #: js/messages.php:30 #, php-format -#| msgid "Do you really want to " msgid "Do you really want to execute \"%s\"?" msgstr "Anda yakin akan mengeksekusi \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Anda akan MENGHAPUS seluruh basis data!" @@ -962,10 +942,9 @@ msgstr "Mengedit Indeks" #: js/messages.php:44 libraries/display_indexes.lib.php:199 #: libraries/display_indexes.lib.php:205 -#, fuzzy, php-format -#| msgid "Add %d column(s) to index" +#, php-format msgid "Add %s column(s) to index" -msgstr "Tambahkan %d kolom ke index" +msgstr "Tambahkan %s kolom ke index" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:48 tbl_chart.php:236 @@ -1005,8 +984,8 @@ msgstr "Muat Ulang Hak Akses" msgid "Removing Selected Users" msgstr "Hapus pengguna yang dipilih" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Tutup" @@ -1133,13 +1112,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1178,7 +1157,7 @@ msgid "Traffic" msgstr "Lalu Lintas" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Pengaturan" @@ -1198,13 +1177,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Tidak ada" @@ -1304,7 +1284,7 @@ msgstr "Ubah pengaturan" msgid "Current settings" msgstr "Pengaturan saat ini" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Judul Bagan" @@ -1319,6 +1299,7 @@ msgid "Divided by %s" msgstr "Dibagi oleh %s" #: js/messages.php:146 +#, fuzzy msgid "Unit" msgstr "Unit" @@ -1331,7 +1312,6 @@ msgid "From general log" msgstr "Dari log umum" #: js/messages.php:150 -#| msgid "Loading logs" msgid "Analysing logs" msgstr "Menganalisis log" @@ -1371,7 +1351,6 @@ msgid "Jump to Log table" msgstr "Langsung ke tabel Log" #: js/messages.php:158 -#| msgid "No data" msgid "No data found" msgstr "Data tidak ditemukan" @@ -1392,7 +1371,7 @@ msgstr "Jelaskan hasil" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Waktu" @@ -1415,12 +1394,10 @@ msgid "Chart" msgstr "Bagan" #: js/messages.php:169 -#| msgid "Add chart" msgid "Edit chart" msgstr "Edit bagan" #: js/messages.php:170 -#| msgid "Series:" msgid "Series" msgstr "Seri" @@ -1490,18 +1467,16 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Impor" #: js/messages.php:191 -#| msgid "Could not import configuration" msgid "Import monitor configuration" msgstr "Impor konfigurasi monitor" #: js/messages.php:192 -#| msgid "Please select the primary key or a unique key" msgid "Please select the file you want to import" msgstr "Silahkan pilih berkas yang ingin anda impor" @@ -1549,7 +1524,7 @@ msgid "Cancel" msgstr "Batal" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Memproses" @@ -1627,17 +1602,14 @@ msgid "Show indexes" msgstr "Tampilkan indeks" #: js/messages.php:237 libraries/mult_submits.inc.php:350 -#| msgid "Disable foreign key checks" msgid "Foreign key check:" msgstr "Pemeriksaan kunci asing:" #: js/messages.php:238 libraries/mult_submits.inc.php:360 -#| msgid "Enabled" msgid "(Enabled)" msgstr "(Aktif)" #: js/messages.php:239 libraries/mult_submits.inc.php:360 -#| msgid "Disabled" msgid "(Disabled)" msgstr "(Tidak aktif)" @@ -1702,12 +1674,13 @@ msgstr "Sembunyikan kotak kueri" msgid "Show query box" msgstr "Tampilkan kotak kueri" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 +#, fuzzy msgid "Edit" msgstr "Edit" @@ -1715,7 +1688,7 @@ msgstr "Edit" msgid "No rows selected" msgstr "Tidak ada baris yang dipilih" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1762,13 +1735,11 @@ msgstr "Melayang di atas titik akan menunjukkan labelnya." #: js/messages.php:284 msgid "To zoom in, select a section of the plot with the mouse." -msgstr "" +msgstr "Untuk memperbesar, pilih bagian dari plot dengan mouse." #: js/messages.php:286 -#, fuzzy -#| msgid "Click reset zoom link to come back to original state." msgid "Click reset zoom button to come back to original state." -msgstr "Klik link Zoom reset untuk kembali ke keadaan semula." +msgstr "Klik link reset Zoom untuk kembali ke keadaan semula." #: js/messages.php:288 msgid "Click a data point to view and possibly edit the data row." @@ -1801,7 +1772,7 @@ msgstr "Isi titk data" msgid "Ignore" msgstr "Abaikan" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Salin" @@ -1817,7 +1788,7 @@ msgstr "Segmen garis" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometri" @@ -1908,21 +1879,15 @@ msgstr "" "setelah disimpan." #: js/messages.php:341 -#, fuzzy -#| msgid "" -#| "You can also edit most columnsby clicking directly on their content." msgid "You can also edit most valuesby double-clicking directly on them." msgstr "" -"Anda juga dapat mengedit sebagian besarkolom dengan mengeklik langsung " +"Anda juga dapat mengedit sebagian nilaidengan mengeklik langsung " "konten." #: js/messages.php:344 -#, fuzzy -#| msgid "" -#| "You can also edit most columnsby clicking directly on their content." msgid "You can also edit most valuesby clicking directly on them." msgstr "" -"Anda juga dapat mengedit sebagian besarkolom dengan mengeklik langsung " +"Anda juga dapat mengedit sebagian nilaidengan mengeklik langsung " "konten." #: js/messages.php:349 @@ -1930,20 +1895,16 @@ msgid "Go to link" msgstr "Tuju ke tautan" #: js/messages.php:350 -#, fuzzy -#| msgid "Column names" msgid "Copy column name" -msgstr "Nama kolom" +msgstr "Salin Nama kolom" #: js/messages.php:351 msgid "Right-click the column name to copy it to your clipboard." -msgstr "" +msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard." #: js/messages.php:352 -#, fuzzy -#| msgid "Update row(s)" msgid "Show data row(s)" -msgstr "Perbarui baris" +msgstr "Tampilkan baris data" #: js/messages.php:355 msgid "Generate password" @@ -1962,22 +1923,17 @@ msgid "More" msgstr "Lainnya" #: js/messages.php:363 -#, fuzzy -#| msgid "Show all" msgid "Show Panel" -msgstr "Tampilkan semua" +msgstr "Tampilkan Panel" #: js/messages.php:364 -#, fuzzy -#| msgid "Hide indexes" msgid "Hide Panel" -msgstr "Sembunyikan indeks" +msgstr "Sembunyikan Panel" #: js/messages.php:367 -#, fuzzy -#| msgid "The selected user was not found in the privilege table." msgid "The requested page was not found in the history, it may have expired." -msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." +msgstr "" +"Halaman yang diminta tidak ditemukan di riwayat, mungkin sudah kadaluarsa." #: js/messages.php:370 setup/lib/index.lib.php:188 #, php-format @@ -2255,52 +2211,52 @@ msgstr "Detik" #: libraries/Advisor.class.php:78 #, php-format msgid "PHP threw following error: %s" -msgstr "" +msgstr "PHP melempar kesalahan berikut: %s" #: libraries/Advisor.class.php:107 #, php-format msgid "Failed evaluating precondition for rule '%s'." -msgstr "" +msgstr "Gagal mengevaluasi prasyarat untuk aturan '%s'." #: libraries/Advisor.class.php:124 #, php-format msgid "Failed calculating value for rule '%s'." -msgstr "" +msgstr "Gagal menghitung nilai aturan '%s'." #: libraries/Advisor.class.php:143 #, php-format msgid "Failed running test for rule '%s'." -msgstr "" +msgstr "Gagal menjalankan tes untuk aturan '%s'." #: libraries/Advisor.class.php:225 -#, fuzzy, php-format -#| msgid "" -#| "Failed formatting string for rule '%s'. PHP threw following error: %s" +#, php-format msgid "Failed formatting string for rule '%s'." -msgstr "" -"Gagal format string untuk aturan '%s'. PHP melemparkan kesalahan berikut:% s" +msgstr "Gagal memformat string untuk aturan '%s'." #: libraries/Advisor.class.php:395 #, php-format msgid "" "Invalid rule declaration on line %1$s, expected line %2$s of previous rule." msgstr "" +"Deklarasi aturan tidak sah pada baris %1$s, diharapkan baris %2$s dari " +"aturan sebelumnya." #: libraries/Advisor.class.php:412 -#, fuzzy, php-format -#| msgid "Invalid server index: %s" +#, php-format msgid "Invalid rule declaration on line %s." -msgstr "Indeks server tidak sah: %s" +msgstr "Deklarasi aturan tidak valid pada baris %s." #: libraries/Advisor.class.php:420 #, php-format msgid "Unexpected characters on line %s." -msgstr "" +msgstr "Karakter tidak diharapkan pada baris %s." #: libraries/Advisor.class.php:434 #, php-format msgid "Unexpected character on line %1$s. Expected tab, but found \"%2$s\"." msgstr "" +"Karakter tidak diduga pada baris %1$s. Diharapkan Tab, tapi ditemukan \"%2$s" +"\"." #: libraries/Advisor.class.php:467 msgid "per second" @@ -2319,32 +2275,32 @@ msgstr "dalam sejam" msgid "per day" msgstr "per hari" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "File configuration yang ada (%s) tidak dapat di baca." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Perizinan yang salah pada file konfigurasi, sehingga tidak dapat ditulis!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Ukuran huruf" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Menaik" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2352,28 +2308,20 @@ msgid "Descending" msgstr "Menurun" #: libraries/DBQbe.class.php:364 -#, fuzzy -#| msgid "Column" msgid "Column:" -msgstr "Kolom" +msgstr "Kolom:" #: libraries/DBQbe.class.php:406 -#, fuzzy -#| msgid "Sort" msgid "Sort:" -msgstr "Urutan" +msgstr "Urutan:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 -#, fuzzy -#| msgid "Show" +#: libraries/DBQbe.class.php:468 msgid "Show:" -msgstr "Tampilkan" +msgstr "Tampilkan:" #: libraries/DBQbe.class.php:513 -#, fuzzy -#| msgid "Criteria" msgid "Criteria:" -msgstr "Kriteria" +msgstr "Kriteria:" #: libraries/DBQbe.class.php:576 msgid "Add/Delete criteria rows" @@ -2392,14 +2340,12 @@ msgid "Use Tables" msgstr "Gunakan Tabel" #: libraries/DBQbe.class.php:653 libraries/DBQbe.class.php:757 -#, fuzzy -#| msgid "Or" msgid "Or:" -msgstr "Atau" +msgstr "Atau:" #: libraries/DBQbe.class.php:657 libraries/DBQbe.class.php:742 msgid "And:" -msgstr "" +msgstr "Dan:" #: libraries/DBQbe.class.php:661 msgid "Ins" @@ -2410,18 +2356,16 @@ msgid "Del" msgstr "Hapus" #: libraries/DBQbe.class.php:680 -#, fuzzy -#| msgid "Modify" msgid "Modify:" -msgstr "Ubah" +msgstr "Ubah:" #: libraries/DBQbe.class.php:737 msgid "Ins:" -msgstr "" +msgstr "Untuk:" #: libraries/DBQbe.class.php:752 msgid "Del:" -msgstr "" +msgstr "Hapus:" #: libraries/DBQbe.class.php:1322 #, php-format @@ -2480,16 +2424,14 @@ msgid_plural "Total: %s matches" msgstr[0] "Total: %s cocok" #: libraries/DbSearch.class.php:331 -#, fuzzy, php-format -#| msgid "%s match inside table %s" -#| msgid_plural "%s matches inside table %s" +#, php-format msgid "%1$s match in %2$s" msgid_plural "%1$s matches in %2$s" -msgstr[0] "%s cocok dalam tabel %s" +msgstr[0] "%1$s cocok dengan %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Jelajahi" @@ -2498,14 +2440,14 @@ msgstr "Jelajahi" msgid "Delete the matches for the %s table?" msgstr "Hapus yang cocok untuk %s tabel?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Hapus" @@ -2567,46 +2509,32 @@ msgctxt "Last page" msgid "End" msgstr "Akhir" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Baris mulai" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Jumlah baris:" -#: libraries/DisplayResults.class.php:917 -#, fuzzy -#| msgid "Mode" +#: libraries/DisplayResults.class.php:921 msgid "Mode:" -msgstr "Modus" +msgstr "Modus:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horisontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horisontal (judul diputar)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "Judul setiap %s baris" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Urut berdasarkan kunci" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2633,93 +2561,91 @@ msgstr "Urut berdasarkan kunci" msgid "Options" msgstr "Opsi" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Teks parsial" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Teks penuh" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Kunci relasi" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Kolom tampilan relasi" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Tampilkan konten biner" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Tampilkan konten BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Tampilkan konten biner dalam HEX" -#: libraries/DisplayResults.class.php:1633 -#, fuzzy -#| msgid "Browser transformation" +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" -msgstr "Transformasi Browser" +msgstr "Sembunyikan Transformasi Browser" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" -msgstr "" +msgstr "Teks Dikenali" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" -msgstr "" +msgstr "Biner Diketahui" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Baris telah dihapus" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Tutup" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kemungkinan hanya perkiraan saja. Lihat [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "dalam susunan pemeriksaan" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat %" -"sdokumentasi%s." +"Sebuah view setidaknya mempunyai jumlah kolom berikut. Harap lihat " +"%sdokumentasi%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Tampilan baris" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Pencarian dilakukan dalam %01.4f detik" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2728,8 +2654,8 @@ msgstr "Pencarian dilakukan dalam %01.4f detik" msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2740,45 +2666,45 @@ msgstr "Dengan pilihan:" msgid "Check All" msgstr "Pilih Semua" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Ekspor" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Buat tampilan" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operasi hasil kueri" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Tampilan cetak" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Tampilan cetak (teks lengkap)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Tampilkan bagan" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" -msgstr "" +msgstr "Visualisasi data GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Tautan tidak ditemukan" @@ -2841,14 +2767,12 @@ msgstr "Buka jendela phpMyAdmin baru" #: libraries/Header.class.php:393 msgid "Click on the bar to scroll to top of page" -msgstr "" +msgstr "Klik pada bar untuk menggulir ke atas halaman" #: libraries/Header.class.php:635 #: libraries/plugins/auth/AuthenticationCookie.class.php:172 -#, fuzzy -#| msgid "Cookies must be enabled past this point." msgid "Javascript must be enabled past this point" -msgstr "Mulai dari sini cookies harus diaktifkan." +msgstr "Mulai dari sini cookies harus diaktifkan" #: libraries/Index.class.php:531 msgid "No index defined!" @@ -2857,38 +2781,38 @@ msgstr "Indeks belum ditentukan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Dipadatkan" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitas" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Penyortiran" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentar" @@ -2923,14 +2847,14 @@ msgstr "Gambarkan" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2943,12 +2867,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Cari" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Tambahkan" @@ -3078,15 +3002,15 @@ msgstr[0] "%1$d baris ditambahkan." msgid "Error while creating PDF:" msgstr "Terjadi galat sewaktu membuat PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabel terakhir" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Tidak ada tabel terakhir" @@ -3218,28 +3142,22 @@ msgid "unknown table status: " msgstr "status tabel tidak diketahui: " #: libraries/Table.class.php:796 -#, fuzzy, php-format -#| msgid "Source database" +#, php-format msgid "Source database `%s` was not found!" -msgstr "Basis data sumber" +msgstr "Sumber Basis data `%s` tidak ditemukan!" #: libraries/Table.class.php:804 -#, fuzzy, php-format -#| msgid "Theme %s not found!" +#, php-format msgid "Target database `%s` was not found!" -msgstr "Tema %s tidak ditemukan!" +msgstr "Target Basis data `%s` tidak ditemukan!" #: libraries/Table.class.php:1232 -#, fuzzy -#| msgid "Invalid database" msgid "Invalid database:" -msgstr "Basis data tidak valid" +msgstr "Basis data tidak valid:" #: libraries/Table.class.php:1246 -#, fuzzy -#| msgid "Invalid table name" msgid "Invalid table name:" -msgstr "Nama tabel tidak valid" +msgstr "Nama tabel tidak valid:" #: libraries/Table.class.php:1278 #, php-format @@ -3247,10 +3165,9 @@ msgid "Error renaming table %1$s to %2$s" msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s" #: libraries/Table.class.php:1297 -#, fuzzy, php-format -#| msgid "Table %s has been renamed to %s" +#, php-format msgid "Table %1$s has been renamed to %2$s." -msgstr "Nama tabel %s telah diubah menjadi %s" +msgstr "Tabel %1$s telah berubah nama menjadi %2$s." #: libraries/Table.class.php:1441 msgid "Could not save table UI preferences" @@ -3326,14 +3243,15 @@ msgstr "Urutan tampilan:" #: libraries/TableSearch.class.php:839 msgid "Use this column to label each point" -msgstr "" +msgstr "Gunakan kolom ini untuk label setiap titik" #: libraries/TableSearch.class.php:860 +#, fuzzy msgid "Maximum rows to plot" -msgstr "" +msgstr "Baris maksimum untuk plot" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Menjelajahi nilai luar" @@ -3352,8 +3270,9 @@ msgid "Do a \"query by example\" (wildcard: \"%\")" msgstr "Lakukan \"kueri dengan contoh\" (wildcard: \"%\")" #: libraries/TableSearch.class.php:1169 +#, fuzzy msgid "Browse/Edit the points" -msgstr "" +msgstr "Melihat-lihat/Edit titik" #: libraries/TableSearch.class.php:1176 msgid "How to use" @@ -3363,7 +3282,7 @@ msgstr "Cara pakai" #, fuzzy #| msgid "Reset" msgid "Reset zoom" -msgstr "Reset" +msgstr "Reset Zoom" #: libraries/Theme.class.php:170 #, php-format @@ -3394,51 +3313,64 @@ msgid "Theme path not found for theme %s!" msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!" #: libraries/Theme_Manager.class.php:363 -#, fuzzy -#| msgid "Theme" msgid "Theme:" -msgstr "Tema" +msgstr "Tema:" #: libraries/Types.class.php:296 msgid "" "A 1-byte integer, signed range is -128 to 127, unsigned range is 0 to 255" msgstr "" +"1-byte integer, berkisar antara -128 sampai 127, unsigned berkisar antara 0 " +"sampai 255" #: libraries/Types.class.php:298 msgid "" "A 2-byte integer, signed range is -32,768 to 32,767, unsigned range is 0 to " "65,535" msgstr "" +"2-byte integer, berkisar antara -32,768 sampai 32,767, unsigned berkisar " +"antara 0 sampai 65,535" #: libraries/Types.class.php:300 msgid "" "A 3-byte integer, signed range is -8,388,608 to 8,388,607, unsigned range is " "0 to 16,777,215" msgstr "" +"3-byte integer, signed berkisar antara -8,388,608 sampai 8,388,607, unsigned " +"berkisar antara 0 sampai 16,777,215" #: libraries/Types.class.php:302 msgid "" "A 4-byte integer, signed range is -2,147,483,648 to 2,147,483,647, unsigned " "range is 0 to 4,294,967,295" msgstr "" +"4-byte integer, signed berkisar antara -2,147,483,648 sampai 2,147,483,647, " +"unsigned berkisar antara 0 sampai 4,294,967,295" #: libraries/Types.class.php:304 msgid "" "An 8-byte integer, signed range is -9,223,372,036,854,775,808 to " "9,223,372,036,854,775,807, unsigned range is 0 to 18,446,744,073,709,551,615" msgstr "" +"8-byte integer, signed berkisar antara -9,223,372,036,854,775,808 sampai " +"9,223,372,036,854,775,807, unsigned berkisar antara 0 sampai " +"18,446,744,073,709,551,615" #: libraries/Types.class.php:306 libraries/Types.class.php:713 msgid "" "A fixed-point number (M, D) - the maximum number of digits (M) is 65 " "(default 10), the maximum number of decimals (D) is 30 (default 0)" msgstr "" +"Sebuah Nomor fixed-point (M, D) - Jumlah maksimum digit (M) adalah 65 " +"(standar 10), nomor maksimal desimal (D) adalah 30 (standar 0)" #: libraries/Types.class.php:308 msgid "" "A small floating-point number, allowable values are -3.402823466E+38 to " "-1.175494351E-38, 0, and 1.175494351E-38 to 3.402823466E+38" msgstr "" +"small floating-point number, mengizinkan nilai dari -3.402823466E+38 sampai " +"-1.175494351E-38, 0, dan 1.175494351E-38 sampai 3.402823466E+38" #: libraries/Types.class.php:310 msgid "" @@ -3446,57 +3378,71 @@ msgid "" "-1.7976931348623157E+308 to -2.2250738585072014E-308, 0, and " "2.2250738585072014E-308 to 1.7976931348623157E+308" msgstr "" +"double-precision floating-point number, mengizinkan nilai antara " +"-1.7976931348623157E+308 sampai -2.2250738585072014E-308, 0, dan " +"2.2250738585072014E-308 sampai 1.7976931348623157E+308" #: libraries/Types.class.php:312 msgid "" "Synonym for DOUBLE (exception: in REAL_AS_FLOAT SQL mode it is a synonym for " "FLOAT)" msgstr "" +"Sinonim untuk DOUBLE (kecuali: dalam mode REAL_AS_FLOAT SQL adalah sinonim " +"untuk FLOAT)" #: libraries/Types.class.php:314 msgid "" "A bit-field type (M), storing M of bits per value (default is 1, maximum is " "64)" msgstr "" +"Sebuah tipe bit-field (M), menyimpan M dari bit tiap nilai (standar adalah " +"1, maksimum adalah 64)" #: libraries/Types.class.php:316 msgid "" "A synonym for TINYINT(1), a value of zero is considered false, nonzero " "values are considered true" msgstr "" +"Sinonim untuk TINYINT(1), nilai nol dianggal false, nilai selain nol " +"dianggap true" #: libraries/Types.class.php:318 msgid "An alias for BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" -msgstr "" +msgstr "Sebuah alias untuk BIGINT UNSIGNED NOT NULL AUTO_INCREMENT UNIQUE" #: libraries/Types.class.php:320 libraries/Types.class.php:723 -#, fuzzy, php-format +#, php-format #| msgid "Create version %s of %s.%s" msgid "A date, supported range is %1$s to %2$s" -msgstr "Buat versi %s dari %s.%s" +msgstr "Sebuah Tanggal, Didukung pada kisaran %1$s sampai %2$s" #: libraries/Types.class.php:322 libraries/Types.class.php:725 #, php-format msgid "A date and time combination, supported range is %1$s to %2$s" -msgstr "" +msgstr "Kombinasi tanggal dan waktu, didukung pada kisaran %1$s sampai %2$s" #: libraries/Types.class.php:324 msgid "" "A timestamp, range is 1970-01-01 00:00:01 UTC to 2038-01-09 03:14:07 UTC, " "stored as the number of seconds since the epoch (1970-01-01 00:00:00 UTC)" msgstr "" +"timestamp, berkisar antara 1970-01-01 00:00:01 UTC sampai 2038-01-09 " +"03:14:07 UTC, disimpan sebagai jumlah detik sejak awal waktu (1970-01-01 " +"00:00:00 UTC)" #: libraries/Types.class.php:326 libraries/Types.class.php:729 -#, fuzzy, php-format +#, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "A time, range is %1$s to %2$s" -msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s" +msgstr "Waktu, berkisar %1$s sampai %2$s" #: libraries/Types.class.php:328 msgid "" "A year in four-digit (4, default) or two-digit (2) format, the allowable " "values are 70 (1970) to 69 (2069) or 1901 to 2155 and 0000" msgstr "" +"Format tahun dalam 4-digit (4, standar) atau 2 digit (2), mengizinkan nilai " +"dari 70 (1970) sampai 69 (2069) atau 1901 sampai 2155 dan 0000" #: libraries/Types.class.php:330 msgid "" @@ -3516,18 +3462,24 @@ msgid "" "A TEXT column with a maximum length of 255 (2^8 - 1) characters, stored with " "a one-byte prefix indicating the length of the value in bytes" msgstr "" +"kolom TEXT dengan panjang maksimum karakter 255 (2^8 - 1), disimpan dengan " +"awalan satu-byte menunjukkan panjang nilai dalam byte" #: libraries/Types.class.php:336 libraries/Types.class.php:733 msgid "" "A TEXT column with a maximum length of 65,535 (2^16 - 1) characters, stored " "with a two-byte prefix indicating the length of the value in bytes" msgstr "" +"Kolom TEXT dengan panjang maksimum karakter 65,535 (2^16 - 1), disimpan " +"dengan awalan dua-byte menunjukan panjang nilai dalam byte" #: libraries/Types.class.php:338 msgid "" "A TEXT column with a maximum length of 16,777,215 (2^24 - 1) characters, " "stored with a three-byte prefix indicating the length of the value in bytes" msgstr "" +"Kolom TEXT dengan panjang maksimum karakter 16,777,215 (2^24 - 1), disimpan " +"awalan tiga-byte menunjukan pajang nilai dalam byte" #: libraries/Types.class.php:340 msgid "" @@ -3689,7 +3641,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Batas ukuran: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3750,7 +3702,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Edit di tempat" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profil" @@ -3789,50 +3741,50 @@ msgstr "Fungsionalitas %s dipengaruhi oleh suatu bug, lihat %s" msgid "Click to toggle" msgstr "Klik untuk beralih" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Telusuri komputer Anda:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pilih dari direktori unggah %s pada web server:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori yang telah ditetapkan untuk mengunggah tidak dapat dihubungi" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Tidak ada arsip untuk diunggah" # Imperative menu -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Kosongkan" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Eksekusi" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Cetak" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Pembuatan" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Pembaruan terakhir" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Pemeriksaan terakhir" @@ -3956,58 +3908,58 @@ msgstr "memungkinkan mengeksploitasi" msgid "numeric key detected" msgstr "tombol angka terdeteksi" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Tambahkan" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Uji" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Keduanya" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Tempat" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Kiri" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Kanan" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Tidak aktif" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Buka" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Tutup" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4017,7 +3969,7 @@ msgstr "Tutup" msgid "structure" msgstr "struktur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4027,7 +3979,7 @@ msgstr "struktur" msgid "data" msgstr "data" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4037,31 +3989,31 @@ msgstr "data" msgid "structure and data" msgstr "struktur dan data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Kustom - menampilkan semua opsi yang mungkin untuk konfigurasi" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Kustom - seperti di atas, namun tanpa pilihan cepat/kustom" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "INSERT lengkap" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "INSERT yang diperluas" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "keduanya dari yang di atas" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "tidak keduanya dari yang di atas" @@ -6151,8 +6103,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nama Pengguna" @@ -6559,7 +6511,7 @@ msgstr "Basis Data:" msgid "Table(s):" msgstr "Tabel:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Baris:" @@ -7156,7 +7108,7 @@ msgid "No data found for GIS visualization." msgstr "Data untuk visualisasi GIS tidak ditemukan." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memberikan hasil kosong (atau nol baris)." @@ -7279,11 +7231,11 @@ msgstr "" "Gunakan tombol TAB untuk maju dari angka ke angka atau gunakan CTRL+panah " "untuk maju kemana saja" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Menampilkan kueri SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Nomor baris baru: %1$d" @@ -7334,7 +7286,7 @@ msgstr "Tambahkan prefiks tabel" msgid "Add prefix" msgstr "Tambahkan prefiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7557,20 +7509,20 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Filter tables by name" msgid "filter databases by name" msgstr "Filter tabel menurut nama" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Bersihkan seri" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7686,17 +7638,17 @@ msgid "Drop the database (DROP)" msgstr "Hapus basis data (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Struktur saja" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data saja" @@ -8121,7 +8073,7 @@ msgstr "Masukkan nama kolom pada baris pertama" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8129,7 +8081,7 @@ msgstr "Inang" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8147,7 +8099,7 @@ msgstr "Versi PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9110,11 +9062,11 @@ msgstr "Anda harus memasukkan nama trigger" #: libraries/rte/rte_triggers.lib.php:459 msgid "You must provide a valid timing for the trigger" -msgstr "Anda harus memasukkan waktu yang valid untuk trigger." +msgstr "Anda harus memasukkan waktu yang valid untuk trigger" #: libraries/rte/rte_triggers.lib.php:466 msgid "You must provide a valid event for the trigger" -msgstr "Anda harus memasukkan event yang valid untuk trigger." +msgstr "Anda harus memasukkan event yang valid untuk trigger" #: libraries/rte/rte_triggers.lib.php:474 msgid "You must provide a valid table name" @@ -9251,7 +9203,7 @@ msgstr "Atribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9324,8 +9276,9 @@ msgid "Only show keys" msgstr "Hanya tampilkan kunci" #: libraries/schema/User_Schema.class.php:464 +#, fuzzy msgid "Landscape" -msgstr "Landscape" +msgstr "Datar" #: libraries/schema/User_Schema.class.php:465 msgid "Portrait" @@ -9416,7 +9369,7 @@ msgid "Library" msgstr "Pustaka" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versi" @@ -9706,7 +9659,7 @@ msgstr "Sukses mengubah Kata Sandi untuk %s ." #: libraries/server_privileges.lib.php:1387 #, php-format msgid "You have revoked the privileges for %s" -msgstr "Anda telah mencabut hak akses untuk %s." +msgstr "Anda telah mencabut hak akses untuk %s" #: libraries/server_privileges.lib.php:1447 msgid "Database for user" @@ -9723,7 +9676,7 @@ msgstr "Berikan semua hak untuk nama wildcard (pengguna\\_%)" #: libraries/server_privileges.lib.php:1465 #, php-format msgid "Grant all privileges on database "%s"" -msgstr "Berikan semua hak untuk basis data "%s"." +msgstr "Berikan semua hak untuk basis data "%s"" #: libraries/server_privileges.lib.php:1560 #, php-format @@ -9770,6 +9723,7 @@ msgid "database-specific" msgstr "khusus basis data" #: libraries/server_privileges.lib.php:1697 +#, fuzzy msgid "wildcard" msgstr "wildcard" @@ -9841,7 +9795,7 @@ msgstr "Hapus pengguna yang dipilih" #: libraries/server_privileges.lib.php:2548 msgid "Revoke all active privileges from the users and delete them afterwards." -msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya" +msgstr "Cabut semua hak akses dari pengguna dan hapus setelahnya." #: libraries/server_privileges.lib.php:2552 #: libraries/server_privileges.lib.php:2556 @@ -9896,71 +9850,268 @@ msgstr "" "diubah secara manual. Disarankan untuk %sme-reload profil pengguna%s sebelum " "melanjut." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Pengguna yang dipilih tidak ditemukan pada tabel hak akses." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Pengguna baru telah ditambahkan." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d detik" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d menit" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistik log" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Rentang waktu pilihan:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Penganalisis kueri" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instruksi Pemantauan" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Harap catat:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Tambahkan bagan" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Bagan bawaan" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variabel status" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Pilih seri:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Biasa dipantau" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "atau masukkan nama variabel:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Tampilkan sebagai nilai diferensial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Terapkan pemisah" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Sertakan satuan kepada nilai data" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Tambahkan seri ini" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Bersihkan seri" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Seri pada Bagan:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Jalankan Pemantauan" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Petunjuk/Penyiapan" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Selesai mengatur ulang/mengedit bagan" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Aktifkan penyorotan" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Laju penyegaran" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Kolom bagan" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Pengaturan bagan" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Kembalikan nilai bawaan" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Hasil SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Diciptakan oleh" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Besar pertumbuhan berkas data" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Lainnya" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Mulai" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total waktu:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Waktu" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Tutup" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Waktu" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Markahi kueri SQL ini" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Judul" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Izinkan semua pengguna untuk mengakses markah ini" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9981,10 +10132,6 @@ msgstr "Bersihkan" msgid "Bookmark this SQL query:" msgstr "Markahi kueri SQL ini" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Izinkan semua pengguna untuk mengakses markah ini" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Ganti markah bernama sama yang ada" @@ -10011,7 +10158,7 @@ msgid "" "below, if there is any, may also help you in diagnosing the problem" msgstr "" "Tampaknya ada galat pada kueri SQL Anda. Keluaran galat server MySQL di " -"bawah, jika ada, mungkin dapat membantu Anda mendiagnosis masalah." +"bawah, jika ada, mungkin dapat membantu Anda mendiagnosis masalah" #: libraries/sqlparser.lib.php:178 msgid "" @@ -10083,7 +10230,7 @@ msgstr "Tabel %s telah dikosongkan" #: libraries/structure.lib.php:91 tbl_create.php:201 msgid "Tracking is active." -msgstr "Pelacakan aktif" +msgstr "Pelacakan aktif." #: libraries/structure.lib.php:98 tbl_create.php:207 msgid "Tracking is not active." @@ -10123,7 +10270,7 @@ msgstr "Pilih tabel berbeban tambahan" msgid "Sort" msgstr "Urutan" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Tidak ada" @@ -10283,7 +10430,7 @@ msgstr "Efektif" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s berhasil diubah" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Galat kueri" @@ -10442,13 +10589,13 @@ msgstr "Galat pada arsip ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" #: pmd_general.php:82 msgid "Show/Hide left menu" -msgstr "Tampilkan/Sembunyikan menu kiri." +msgstr "Tampilkan/Sembunyikan menu kiri" #: pmd_general.php:86 msgid "View in fullscreen" @@ -10500,7 +10647,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Pembuatan halaman gagal" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10560,43 +10707,43 @@ msgstr "Agregasi" msgid "Active options" msgstr "Opsi aktif" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Halaman telah dibuat" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Pembuatan halaman gagal" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Halaman" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Impor dari halaman terpilih" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Ekspor ke halaman terpilih" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Buat halaman dan ekspor ke dalamnya" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nama halaman baru: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Ekspor/Impor dengan skala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "direkomendasikan" @@ -10613,10 +10760,8 @@ msgid "FOREIGN KEY relation added" msgstr "Relasi FOREIGN KEY ditambahkan" #: pmd_relation_new.php:82 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" -msgstr "Galat: Relasi tidak ditambahkan." +msgstr "Galat: Fitur Relasi tidak diaktifkan!" #: pmd_relation_new.php:98 msgid "Internal relation added" @@ -10626,7 +10771,7 @@ msgstr "Relasi internal ditambahkan" msgid "Relation deleted" msgstr "Relasi dihapus" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Galat sewaktu menyimpan koordinat untuk Desainer." @@ -10660,7 +10805,7 @@ msgstr "Impor dari penyimpanan peramban" #: prefs_manage.php:255 msgid "Settings will be imported from your browser's local storage." -msgstr "Pengaturan akan diimpor dari penyimpanan lokal peramban Anda" +msgstr "Pengaturan akan diimpor dari penyimpanan lokal peramban Anda." #: prefs_manage.php:261 msgid "You have no saved settings!" @@ -10799,7 +10944,7 @@ msgstr "" #: server_replication.php:104 msgid "Unable to change master" -msgstr "Tidak dapat mengubah master." +msgstr "Tidak dapat mengubah master" #: server_replication.php:108 #, php-format @@ -10893,6 +11038,7 @@ msgid "Full stop" msgstr "Hentikan semua" #: server_replication.php:304 +#, fuzzy msgid "Reset slave" msgstr "Reset slave" @@ -10953,7 +11099,7 @@ msgid "" "phpMyAdmin was unable to kill thread %s. It probably has already been closed." msgstr "" "phpMyAdmin gagal menutup Thread %s. Kemungkinan Thread tersebut sudah " -"ditutup terlebih dahulu" +"ditutup terlebih dahulu." #: server_status.php:93 #, php-format @@ -11006,7 +11152,7 @@ msgstr "Pengiriman" #: server_status.php:261 msgid "max. concurrent connections" -msgstr "Koneksi konkuren maks." +msgstr "Koneksi konkuren maksimum" #: server_status.php:271 msgid "Failed attempts" @@ -11055,188 +11201,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instruksi Pemantauan" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Harap catat:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Tambahkan bagan" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Bagan bawaan" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variabel status" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Pilih seri:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Biasa dipantau" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "atau masukkan nama variabel:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Tampilkan sebagai nilai diferensial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Terapkan pemisah" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Sertakan satuan kepada nilai data" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Tambahkan seri ini" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Bersihkan seri" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Seri pada Bagan:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistik log" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Rentang waktu pilihan:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hanya sertakan perintah SELECT, INSERT, UPDATE, dan DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Penganalisis kueri" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d detik" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d menit" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Jalankan Pemantauan" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Petunjuk/Penyiapan" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Selesai mengatur ulang/mengedit bagan" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Aktifkan penyorotan" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Laju penyegaran" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Kolom bagan" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Pengaturan bagan" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Kembalikan nilai bawaan" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12018,6 +11982,7 @@ msgid "Donate" msgstr "Donasi" #: setup/frames/servers.inc.php:29 +#, fuzzy msgid "Edit server" msgstr "Edit server" @@ -12203,26 +12168,26 @@ msgstr "Kunci harus terdiri dari huruf, angka, [em]dan[/em] karakter khusus." msgid "Wrong data" msgstr "Data salah" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Menggunakan markah \"%s\" sebagai kueri penjelajahan bawaan." -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Markah %s dibuat" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Tampilkan sebagai kode PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL tervalidasi" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12235,21 +12200,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Ditemukan masalah dengan indeks dalam tabel `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Markahi kueri SQL ini" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Judul" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data" @@ -12339,6 +12294,10 @@ msgstr "Nilai X" msgid "Y-Axis label:" msgstr "Label Sumbu-Y:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Awal baris:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12476,39 +12435,37 @@ msgid "Choose column to display:" msgstr "Pilih kolom untuk ditampilkan" #: tbl_structure.php:125 -#, fuzzy -#| msgid "No rows selected" msgid "No column selected." -msgstr "Tidak ada baris yang dipilih" +msgstr "Tidak ada kolom yang dipilih." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Laporan pelacakan untuk table '%s'" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versi %s telah dibuat, pelacakan untuk %s.%s diaktifkan." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Pelacakan %s.%s diaktifkan." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Perintah SQL dieksekusi." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12516,116 +12473,116 @@ msgstr "" "Anda dapat mengeksekusi dump dengan membuat dan menggunakan basis data " "sementara. Harap pastikan Anda mempunyai hak untuk melakukannya." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versi snapshot %s (kode SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Pelacakan definisi data berhasil dihapus" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Pelacakan manipulasi data berhasil dihapus" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Hapus baris pelacakan data dari laporan" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Tidak ada data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Tanggal" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Pernyataan definisi data" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Penyataan manipulasi data" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Dump SQL (unduhan berkas)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Dump SQL" -#: tbl_tracking.php:680 -msgid "This option will replace your table and contained data." -msgstr "Pilihan ini akan mengganti table dan data isi table" - #: tbl_tracking.php:681 +msgid "This option will replace your table and contained data." +msgstr "Pilihan ini akan mengganti table dan data isi table." + +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Eksekusi SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Ekspor sebagai %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Tunjukkan Versi" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Nonaktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Nonaktifkan sekarang" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktifkan pelacakan untuk %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktifkan sekarang" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Buat versi %s dari %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Lacak definisi data dari pernyataan berikut:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Lacak manipulasi data dari pernyataan berikut:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Buat versi" @@ -13104,7 +13061,7 @@ msgstr "Persentase pengurutan yang menyebabkan tabel temporer" #: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 msgid "Too many sorts are causing temporary tables." -msgstr "Terlalu banyak pengurutan yang menyebabkan tabel temporer" +msgstr "Terlalu banyak pengurutan yang menyebabkan tabel temporer." #: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222 msgid "" @@ -13478,12 +13435,15 @@ msgid "" "Consider increasing {open_files_limit}, and check the error log when " "restarting after changing {open_files_limit}." msgstr "" +"Pertimbangkan untuk meningkatkan {open_files_limit}, dan periksa log " +"kesalahan ketika restart setelah mengubah {open_files_limit}." #: libraries/advisory_rules.txt:339 #, php-format msgid "" "The number of opened files is at %s%% of the limit. It should be below 85%%" msgstr "" +"jumlah file yang dibuka adalah %s%% dari batasan. seharusnya itu dibawah 85%%" #: libraries/advisory_rules.txt:341 msgid "Rate of open files" @@ -13496,14 +13456,10 @@ msgid "The rate of opening files is high." msgstr "Tingkat berkas yang terbuka" #: libraries/advisory_rules.txt:346 -#, fuzzy, php-format -#| msgid "" -#| "Aborted connections rate is at %s, this value should be less than 1 per " -#| "hour" +#, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" msgstr "" -"Tingkat koneksi yang digugurkan adalah pada %s, hasil ini seharusnya kurang " -"dari 1 per jam" +"Tingkat file yang dibuka: %s, seharusnya nilai ini kurang dari 5 per jam" #: libraries/advisory_rules.txt:348 #, php-format @@ -13511,32 +13467,30 @@ msgid "Immediate table locks %%" msgstr "Kunci tabel langsung %%" #: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 +#, fuzzy msgid "Too many table locks were not granted immediately." -msgstr "" +msgstr "Terlalu banyak kunci tabel yang tidak diberikan segera." #: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 +#, fuzzy msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" +"Optimalkan Query dan/atau penggunaan InnoDB untuk mengurangi kunci tunggu." #: libraries/advisory_rules.txt:353 -#, fuzzy, php-format -#| msgid "Max %% MyISAM key buffer ever used" +#, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" +msgstr "Kunci tabel terpakai: %s%%, seharusnya nilai ini diatas 95%%" #: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" -msgstr "" +msgstr "Tingkat tunggu kunci tabel" #: libraries/advisory_rules.txt:360 -#, fuzzy, php-format -#| msgid "" -#| "Aborted connections rate is at %s, this value should be less than 1 per " -#| "hour" +#, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" msgstr "" -"Tingkat koneksi yang digugurkan adalah pada %s, hasil ini seharusnya kurang " -"dari 1 per jam" +"Tingkat tunggu kunci tabel: %s, hasil ini seharusnya kurang dari 1 per jam" #: libraries/advisory_rules.txt:362 msgid "Thread cache" @@ -13547,16 +13501,16 @@ msgid "" "Thread cache is disabled, resulting in more overhead from new connections to " "MySQL." msgstr "" +"Cache Thread dinonaktifkan, akibat kelebihan beban dari koneksi baru ke " +"MySQL." #: libraries/advisory_rules.txt:366 msgid "Enable the thread cache by setting {thread_cache_size} > 0." -msgstr "" +msgstr "Aktifkan cache thread dengan mengatur {thread_cache_size} > 0." #: libraries/advisory_rules.txt:367 -#, fuzzy -#| msgid "Thread cache hit rate %%" msgid "The thread cache is set to 0" -msgstr "Tingkat penggunaan singgahan thread %%" +msgstr "Cache thread diatur ke 0" #: libraries/advisory_rules.txt:369 #, php-format @@ -13569,46 +13523,49 @@ msgstr "Singgahan thread tidak efisien." #: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." -msgstr "" +msgstr "Tingkatkan {thread_cache_size}." #: libraries/advisory_rules.txt:374 #, fuzzy, php-format #| msgid "Max %% MyISAM key buffer ever used" msgid "Thread cache hitrate: %s%%, this value should be above 80%%" -msgstr "Jumlah %% maksimum penyangga kunci MyISAM yang pernah dipakai" +msgstr "hit-rate cache thread: %s%%, seharusnya nilai ini diatas 80%%" #: libraries/advisory_rules.txt:376 #, fuzzy #| msgid "There are too many joins without indexes." msgid "Threads that are slow to launch" -msgstr "Terlalu banyak join tanpa indeks." +msgstr "Thread lambat untuk diluncurkan" #: libraries/advisory_rules.txt:379 #, fuzzy #| msgid "There are too many joins without indexes." msgid "There are too many threads that are slow to launch." -msgstr "Terlalu banyak join tanpa indeks." +msgstr "Terlalu banyak thread sehingga lama untuk diluncurkan." #: libraries/advisory_rules.txt:380 msgid "" "This generally happens in case of general system overload as it is pretty " "simple operations. You might want to monitor your system load carefully." msgstr "" +"Hal ini biasanya terjadi dalam kasus overload sistem umum karena operasi " +"cukup sederhana. Mungkin anda perlu memantau beban sistem anda dengan hati-" +"hati." #: libraries/advisory_rules.txt:381 #, php-format msgid "%s thread(s) took longer than %s seconds to start, it should be 0" msgstr "" +"thread %s sepertinya dimulai lebih dari %s detik, seharusnya ini dimulai " +"dari 0" #: libraries/advisory_rules.txt:383 msgid "Slow launch time" -msgstr "" +msgstr "Waktu peluncuran lambat" #: libraries/advisory_rules.txt:386 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" -msgstr "long_query_time disetel menjadi %d detik." +msgstr "Slow_launch_threads diatas 2 detik" #: libraries/advisory_rules.txt:387 #, fuzzy @@ -13616,13 +13573,14 @@ msgstr "long_query_time disetel menjadi %d detik." msgid "" "Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow " "to launch" -msgstr "Terlalu banyak join tanpa indeks." +msgstr "" +"Atur {slow_launch_time} ke 1 atau 2 detik untuk memperbaiki perhitungan " +"thread yang lambat diluncurkan" #: libraries/advisory_rules.txt:388 -#, fuzzy, php-format -#| msgid "long_query_time is set to %d second(s)." +#, php-format msgid "slow_launch_time is set to %s" -msgstr "long_query_time disetel menjadi %d detik." +msgstr "slow_launch_time disetel menjadi %s detik" #: libraries/advisory_rules.txt:392 msgid "Percentage of used connections" @@ -13633,6 +13591,8 @@ msgid "" "The maximum amount of used connections is getting close to the value of " "{max_connections}." msgstr "" +"Jumlah maksimum koneksi yang digunakan semakin mendekati nilai " +"{max_connections}." #: libraries/advisory_rules.txt:396 msgid "" @@ -13658,7 +13618,7 @@ msgstr "Persentasi koneksi yang digugurkan" #: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 msgid "Too many connections are aborted." -msgstr "Terlalu banyak koneksi yang digugurkan" +msgstr "Terlalu banyak koneksi yang dibatalkan." #: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" @@ -13695,7 +13655,7 @@ msgstr "Persentase klien yang digugurkan" #: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 msgid "Too many clients are aborted." -msgstr "Terlalu banyak klien yang digugurkan" +msgstr "Terlalu banyak klien yang dibatalkan." #: libraries/advisory_rules.txt:417 libraries/advisory_rules.txt:424 msgid "" @@ -13730,7 +13690,7 @@ msgstr "Apakah InnoDB non-aktif?" #: libraries/advisory_rules.txt:432 msgid "You do not have InnoDB enabled." -msgstr "InnoDB anda tidak ada yang aktif" +msgstr "InnoDB anda tidak ada yang aktif." #: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." @@ -13809,13 +13769,12 @@ msgstr "" "Hal ini biasanya cukup dengan mengatur {innodb_log_file_size} ke 25%% dari " "ukuran {innodb_buffer_pool_size}. {innodb_log_file_size} yang terlalu besar, " "dapat memperlambat waktu pemulihan ketika database mengalami kerusakan " -"parah. Lihat Artikel ini . Anda perlu " +"parah. Lihat Artikel ini . Anda perlu " "shutdown server, menghapus file log InnoDB, menetapkan nilai baru di my.cnf, " "mulai server, kemudian periksa log kesalahan jika semuanya berjalan baik-" -"baik saja. Lihat juga entri blog ini " +"baik saja. Lihat juga entri blog ini " #: libraries/advisory_rules.txt:448 #, php-format @@ -13844,6 +13803,16 @@ msgid "" "\"http://www.mysqlperformanceblog.com/2007/11/03/choosing-" "innodb_buffer_pool_size/\">this article" msgstr "" +"Buffer pool InnoDB memiliki dampak besar pada kinerja tabel InnoDB. Tetapkan " +"semua memori tersisa Anda ke buffer ini. Untuk server database yang " +"digunakan semata-mata menggunakan InnoDB sebagai mesin penyimpanan dan tidak " +"memiliki layanan lain yang berjalan(misalnya web server), Anda dapat " +"mengatur ini setinggi 80%% dari memori yang tersedia. Jika tidak, Anda perlu " +"hati-hati menilai pemakaian memori dari layanan lain dan non-InnoDB-Tabel " +"dan menyesuaikan pengaturan variabel ini. Jika diatur terlalu tinggi, " +"sistem anda akan mulai swapping, yang menurunkan kinerja secara signifikan. " +"Lihat juga Artikel Ini" #: libraries/advisory_rules.txt:455 #, php-format @@ -13880,6 +13849,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert diatur ke 0" +#, fuzzy +#~| msgid "Headers every %s rows" +#~ msgid "Headers every %s rows" +#~ msgstr "Judul setiap %s baris" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/it.po b/po/it.po index a11e117596..903cd58e56 100644 --- a/po/it.po +++ b/po/it.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Italian %2$s" msgstr[1] "%1$s corrispondenze in %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Mostra" @@ -2514,14 +2515,14 @@ msgstr "Mostra" msgid "Delete the matches for the %s table?" msgstr "Eliminare le corrispondenze relative alla tabella %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Elimina" @@ -2583,45 +2584,34 @@ msgctxt "Last page" msgid "End" msgstr "Ultima" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Riga iniziale" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Numero di righe:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Modalità" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "orizzontale" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "orizzontale (headers ruotati)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "verticale" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Intestazioni ogni %s righe" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Ordina per chiave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2648,68 +2638,68 @@ msgstr "Ordina per chiave" msgid "Options" msgstr "Opzioni" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Testi parziali" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Testi completi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Chiave relazionale" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Campo di visualizzazione relazionale" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Mostra contenuti binari" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Mostra contenuti BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostra contenuti binari come esadecimali" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Nascondi le trasformazioni del browser" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "La riga è stata cancellata" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Rimuovi" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Può essere approssimato. Vedi [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "nella query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2718,21 +2708,21 @@ msgstr "" "Questa vista ha, come minimo, questo numero di righe. Per informazioni " "controlla la %sdocumentazione%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Mostrando le righe" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "totale" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "La query ha impiegato %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2741,8 +2731,8 @@ msgstr "La query ha impiegato %01.4f sec" msgid "With selected:" msgstr "Se selezionati:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2753,45 +2743,45 @@ msgstr "Se selezionati:" msgid "Check All" msgstr "Seleziona tutti" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Esporta" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Crea vista" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operazioni sui risultati della query" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Visualizza per stampa" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Vista stampa (con full text)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Mostra diagramma" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualizzare dati GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link non trovato" @@ -2868,38 +2858,38 @@ msgstr "Nessun indice definito!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indici" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unica" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Compresso" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalità" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Codifica caratteri" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Commenti" @@ -2934,14 +2924,14 @@ msgstr "Vista" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struttura" @@ -2954,12 +2944,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Cerca" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Inserisci" @@ -3086,15 +3076,15 @@ msgstr[1] "%1$d righe inserite." msgid "Error while creating PDF:" msgstr "Si é verificato un errore durante la creazione del PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Impossibile salvare la tabella recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabelle recenti" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Non ci sono tabelle recenti" @@ -3345,7 +3335,7 @@ msgid "Maximum rows to plot" msgstr "Massimo numero di righe da visualizzare" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Naviga tra i valori esterni" @@ -3696,7 +3686,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Dimensione massima: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3757,7 +3747,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Inline" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -3796,49 +3786,49 @@ msgstr "La %s funzionalità è affetta da un bug noto, vedi %s" msgid "Click to toggle" msgstr "Clicca per alternare" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Cerca sul tuo computer:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selezionare dalla cartella di upload del server web %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "La directory impostata per l'upload non può essere trovata" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nessun file da caricare" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Svuota" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Esegui" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Stampa" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creazione" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Ultimo cambiamento" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Ultimo controllo" @@ -3958,58 +3948,58 @@ msgstr "possibile exploit" msgid "numeric key detected" msgstr "chiave numerica rilevata" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Aggiungi" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Prova" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Entrambi" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Da nessuna parte" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "A sinistra" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "A destra" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Disabilitata" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Aperto" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Chiuso" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4019,7 +4009,7 @@ msgstr "Chiuso" msgid "structure" msgstr "struttura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4029,7 +4019,7 @@ msgstr "struttura" msgid "data" msgstr "dati" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4039,31 +4029,31 @@ msgstr "dati" msgid "structure and data" msgstr "struttura e dati" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rapido - mostra solo le opzioni minime di configurazione" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizzato - come sopra ma senza la scelta quick/custom" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "inserimenti completi" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "inserimenti estesi" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "entrambi i precedenti" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nessuno dei precedenti" @@ -6300,8 +6290,8 @@ msgstr "" "Se hai un nome utente personalizzato, specificalo qui (il predefinito é " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nome utente" @@ -6732,7 +6722,7 @@ msgstr "Database:" msgid "Table(s):" msgstr "Tabelle:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Righe:" @@ -7369,7 +7359,7 @@ msgid "No data found for GIS visualization." msgstr "Nessun data trovato per la visualizzazione GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)." @@ -7491,11 +7481,11 @@ msgstr "" "Usare il tasto TAB per spostare il cursore di valore in valore, o CTRL" "+frecce per spostarlo altrove" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Visualizzo la query SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Inserita riga id: %1$d" @@ -7546,7 +7536,7 @@ msgstr "Aggiungi un prefisso alla tabella" msgid "Add prefix" msgstr "Aggiungi prefisso" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Sei sicuro di voler eseguire la seguente query?" @@ -7770,18 +7760,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtra i database in base al nome" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "Cancella la serie" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtra elementi in base al nome" @@ -7881,17 +7871,17 @@ msgid "Drop the database (DROP)" msgstr "Cancella il database (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Solo struttura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struttura e dati" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Solo dati" @@ -8318,7 +8308,7 @@ msgstr "Metti i nomi dei campi nel primo rigo" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8326,7 +8316,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8344,7 +8334,7 @@ msgstr "Versione PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9521,7 +9511,7 @@ msgstr "Attributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 #, fuzzy msgid "Extra" msgstr "Extra" @@ -9687,7 +9677,7 @@ msgid "Library" msgstr "Libreria" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versione" @@ -10159,71 +10149,297 @@ msgstr "" "privilegi usati dal server se sono stati fatti cambiamenti manuali. In " "questo caso, Si dovrebbero %srinfrescare i privilegi%s prima di continuare." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "L'utente selezionato non è stato trovato nella tabella dei privilegi." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Hai aggiunto un nuovo utente." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d secondo" +msgstr[1] "%d secondi" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minuti" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Registra statistiche" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Intervallo di tempo selezionato:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " +"raggruppamento" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Scegli il log dal quale generare le statistiche." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "I risultati verranno raggruppati secondo il testo di query." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analyzer della query" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Istruzioni per monitoraggio" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Il Monitor phpMyAdmin può assistervi nell'ottimizzazione della " +"configurazione del server e per il tracciamento di query intensive. Per " +"queste ultime occorrerà settare log_output a 'TABLE' e abilitare " +"slow_query_log oppure general_log. Notate comunque che general_log produce " +"molti dati e aumenta il carico del server fino al 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Purtroppo il vostro server di Database non supporta il log su tabella che è " +"un requisito per analizzare i log del database con phpMyAdmin. Il log su " +"tabella è supportato dalla versione di MySQL 5.1.6 in su. In ogni caso " +"potete ancora utilizzare le funzionalità di generazione dei grafici del " +"server." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Utilizzo del monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Il vostro browser aggiornerà tutti i grafici visualizzati a intervalli " +"regolari. Potete aggiungere grafici e cambiare la frequenza di aggiornamento " +"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " +"dentellata su ogni grafico." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Per visualizzare le query dai log, seleziona l'intervallo di tempo rilevante " +"sui grafici tenendo premuto il tasto sinistro del mouse e muovendosi sul " +"grafico. Una volta data conferma, verrà caricata una tabella di query " +"raggruppate nella quale potete cliccare su ogni comando SELECT che appare " +"per l'analisi successiva." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Nota:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Abilitare il general_log può incrementare il carico del server del 5-15%. " +"Tenete presente che la generazione delle statistiche a partire dai log è un " +"compito intensivo per cui si consiglia di selezionare solo un intervallo " +"temporale piccolo e disabilitare il general_log e svuotare la sua tabella." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Aggiungi grafico" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Valori predefiniti del grafico" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variabili di stato" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Seleziona serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Monitorate di solito" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "or scrivi il nome di una variabile:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Visualizzare come valore differenziale" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Applica un divisore" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Aggiungi un unitá ai valori dei dati" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Aggiungi questa serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Cancella la serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serie del grafico:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Avvia monitoraggio" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Istruzioni/Configurazione" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Ho finito di modificare/muovere i grafici" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Abilita evidenziamento" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Ritmo di aggiornamenti" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Numero di grafici per rigo" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Disposizione dei grafici" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"La configurazione dei grafici è memorizzata nella memoria locale dei " +"browser. Potreste voler esportarla se avete una configurazione complicata." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Ripristina i valori predefiniti" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Risultato SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generato da" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Dimensione incremento del file dei dati" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Altre" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Inizio" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo totale:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Chiudi" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Aggiungi ai preferiti questa query SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etichetta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permetti ad ogni utente di accedere a questo bookmark" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10244,10 +10460,6 @@ msgstr "Cancella" msgid "Bookmark this SQL query:" msgstr "Aggiungi ai preferiti questa query SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permetti ad ogni utente di accedere a questo bookmark" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Sostituisci segnalibro esistente se con lo stesso nome" @@ -10389,7 +10601,7 @@ msgstr "Controllo addizionale" msgid "Sort" msgstr "Ordinamento" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nessuno" @@ -10548,7 +10760,7 @@ msgstr "Effettivo" msgid "Table %1$s has been altered successfully" msgstr "La tabella %1$s è già stata modificata con successo" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Errore nella query" @@ -10710,7 +10922,7 @@ msgstr "Errore nell'archivio ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" @@ -10766,7 +10978,7 @@ msgstr "Contrai/Espandi" msgid "Toggle relation lines" msgstr "Attiva le linee della relazione" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importa/esporta le coordinate per PDF schema" @@ -10826,43 +11038,43 @@ msgstr "Globale" msgid "Active options" msgstr "Opzioni attive" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "La pagina è stata creata" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Creazione della pagina fallita" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Pagina" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importa dalla pagina selezionata" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Esporta alla pagina selezionata" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Crea una nuova pagina ed esportala" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nome per la nuova pagina: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Importa/esporta alla dimensione" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "raccomandato" @@ -10892,7 +11104,7 @@ msgstr "Aggiunte relazioni internet" msgid "Relation deleted" msgstr "Relazione cancellata" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Errore nel salvare le coordinate per il Designer." @@ -11348,217 +11560,6 @@ msgstr "" "ripristinare il cambiamento se non si riscontra un miglioramento chiaramente " "misurabile." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Istruzioni per monitoraggio" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Il Monitor phpMyAdmin può assistervi nell'ottimizzazione della " -"configurazione del server e per il tracciamento di query intensive. Per " -"queste ultime occorrerà settare log_output a 'TABLE' e abilitare " -"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_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Purtroppo il vostro server di Database non supporta il log su tabella che è " -"un requisito per analizzare i log del database con phpMyAdmin. Il log su " -"tabella è supportato dalla versione di MySQL 5.1.6 in su. In ogni caso " -"potete ancora utilizzare le funzionalità di generazione dei grafici del " -"server." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Utilizzo del monitor:" - -#: server_status_monitor.php:485 -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 "" -"Il vostro browser aggiornerà tutti i grafici visualizzati a intervalli " -"regolari. Potete aggiungere grafici e cambiare la frequenza di aggiornamento " -"sotto 'Impostazioni' oppure rimuovere alcuni grafici usando l'icona " -"dentellata su ogni grafico." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Per visualizzare le query dai log, seleziona l'intervallo di tempo rilevante " -"sui grafici tenendo premuto il tasto sinistro del mouse e muovendosi sul " -"grafico. Una volta data conferma, verrà caricata una tabella di query " -"raggruppate nella quale potete cliccare su ogni comando SELECT che appare " -"per l'analisi successiva." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Nota:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Abilitare il general_log può incrementare il carico del server del 5-15%. " -"Tenete presente che la generazione delle statistiche a partire dai log è un " -"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_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Aggiungi grafico" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Valori predefiniti del grafico" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variabili di stato" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Seleziona serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Monitorate di solito" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "or scrivi il nome di una variabile:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Visualizzare come valore differenziale" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Applica un divisore" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Aggiungi un unitá ai valori dei dati" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Aggiungi questa serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Cancella la serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serie del grafico:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Registra statistiche" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Intervallo di tempo selezionato:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Recupera solamente comandi SELECT,INSERT,UPDATE e DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Rimuovi dati variabili dai comandi INSERT per ottenere un miglior " -"raggruppamento" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Scegli il log dal quale generare le statistiche." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "I risultati verranno raggruppati secondo il testo di query." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analyzer della query" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d secondo" -msgstr[1] "%d secondi" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minuti" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Avvia monitoraggio" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Istruzioni/Configurazione" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Ho finito di modificare/muovere i grafici" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Abilita evidenziamento" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Ritmo di aggiornamenti" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Numero di grafici per rigo" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Disposizione dei grafici" - -#: server_status_monitor.php:736 -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 "" -"La configurazione dei grafici è memorizzata nella memoria locale dei " -"browser. Potreste voler esportarla se avete una configurazione complicata." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Ripristina i valori predefiniti" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12681,24 +12682,24 @@ msgstr "" msgid "Wrong data" msgstr "Dati errati" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usa il segnalibro \"%s\" come la query di navigazione predefinita." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Segnalibro non creato" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Visualizzo comel codice PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL Validato" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12711,21 +12712,11 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemi con gli indici della tabella `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Aggiungi ai preferiti questa query SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etichetta" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Nessun dato da visualizzare" @@ -12804,6 +12795,12 @@ msgstr "Valori per asse X" msgid "Y-Axis label:" msgstr "Etichetta per l'asse Y:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Riga iniziale" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12948,31 +12945,31 @@ msgstr "Scegli il campo da mostrare" msgid "No column selected." msgstr "Nessuna riga selezionata" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Report di monitoraggio per la tabella `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versione %1$s creata, monitoraggio attivato per %2$s." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitoraggio per %1$s é disattivato dalla version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitoraggio di %1$s é attivo dalla version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instruzione SQL eseguita." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12980,114 +12977,114 @@ msgstr "" "Puoi eseguire il dump creando ed utilizzando un database temporaneo. Prego " "assicurati che hai i corretti permessi per effettuare queste azioni." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Commenta le linee seguenti se non ne hai bisogno." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Istruzione SQL esportata. Copia il dump o eseguilo." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versione %s dello snapshot (codice SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Le definizioni dei dati di monitoraggio eliminati con successo" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" "Le manipolazioni dei dati di monitoraggio sono state cancellate con successo" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Instruzioni per il monitoraggio" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostra %1$s con date dal %2$s al %3$s dell'utente %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Cancella dati di tracciamento dal report" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nessun dato" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instruzione di definizione dei dati" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instruzione di manipolazione dei dati" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Dump SQL (scarica il file)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Dump SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Questa opzione sostituirà la tua tabella e i dati contenuti." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Esecuzione SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Esporta come %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Mostra le versioni" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Disattiva il tracking per %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Disattiva ora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Attiva il tracking per %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Attiva ora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Crea versione %1$s di %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Monitora le istuzioni di definizione dei dati:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Monitora le istruzioni di manipolazione dei dati:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Crea versione" @@ -14479,6 +14476,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert è impostato a 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Intestazioni ogni %s righe" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/ja.po b/po/ja.po index abb2960d0b..37d523f55c 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 15:08+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Japanese %2$s" msgstr[0] "%1$s 件 (テーブル %2$s)" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "表示" @@ -2504,14 +2505,14 @@ msgstr "表示" msgid "Delete the matches for the %s table?" msgstr "テーブル %s に対して条件に一致したものを削除しますか?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "削除" @@ -2573,46 +2574,34 @@ msgctxt "Last page" msgid "End" msgstr "最後" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "開始行" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "行数:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "モード" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "水平" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "水平 (縦ヘッダ)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Headers every %s rows" -msgid "Headers every %s rows" -msgstr "%s 行毎にヘッダを表示" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "キーでソート" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2639,89 +2628,89 @@ msgstr "キーでソート" msgid "Options" msgstr "オプション" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "部分テキスト" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "全文" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "リレーションキー" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "リレーション表示カラム" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "バイナリの内容を表示する" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB の内容を表示する" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "バイナリの内容を 16 進数で表示する" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "ブラウザ変換機能を隠す" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "空間データをテキストで表示" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "空間データをバイナリで表示" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "行を削除しました" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "停止" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "正確な数字とは限りません。[doc@faq3-11]FAQ 3.11[/doc] をご覧ください" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "行/クエリ" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "行の表示" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "合計" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "クエリの実行時間 %01.4f 秒" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2730,8 +2719,8 @@ msgstr "クエリの実行時間 %01.4f 秒" msgid "With selected:" msgstr "チェックしたものを:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2742,45 +2731,45 @@ msgstr "チェックしたものを:" msgid "Check All" msgstr "すべてチェックする" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "エクスポート" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "ビューを作成する" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "クエリ結果操作" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "印刷用画面" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "印刷用画面 (全テキストを含む)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "グラフで表示する" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "空間情報のデータを視覚化する" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "リンク先が見つかりません" @@ -2861,38 +2850,38 @@ msgstr "インデックスが定義されていません!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "インデックス" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "ユニーク" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "圧縮" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "一意な値の数" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "照合順序" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "コメント" @@ -2927,14 +2916,14 @@ msgstr "ビュー" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "構造" @@ -2947,12 +2936,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "検索" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "挿入" @@ -3076,15 +3065,15 @@ msgstr[0] "%1$d 行挿入しました。" msgid "Error while creating PDF:" msgstr "PDF を作成中にエラーが発生しました:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "最近使用したテーブルが保存できません" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "最近使用したテーブル" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "最近使用したテーブルはありません" @@ -3327,7 +3316,7 @@ msgid "Maximum rows to plot" msgstr "プロットする結果の最大数" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "参照されている値を表示する" @@ -3720,7 +3709,7 @@ msgstr "列挙型、定義しておいた列挙リストより値を取ること msgid "Max: %s%s" msgstr "最長: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3781,7 +3770,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "インライン" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "プロファイリング" @@ -3820,49 +3809,49 @@ msgstr "%s の機能には既知のバグがあります。%s をご覧くださ msgid "Click to toggle" msgstr "クリックでオン/オフ切り替え" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "アップロードファイル:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ウェブサーバ上のアップロードディレクトリ %s から選択する:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "指定したアップロードディレクトリが利用できません" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "アップロードファイルがありません" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "空にする" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "実行" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "印刷" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "作成日時" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "最終更新" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "最終検査" @@ -3981,58 +3970,58 @@ msgstr "なんらかの攻撃をされている可能性があります" msgid "numeric key detected" msgstr "グローバル変数から数値キーが検出されました" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "挿入" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "判断基準" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "両方" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "なし" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "左" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "右" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "無効" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "開いておく" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "閉じておく" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4042,7 +4031,7 @@ msgstr "閉じておく" msgid "structure" msgstr "構造" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4052,7 +4041,7 @@ msgstr "構造" msgid "data" msgstr "データ" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4062,31 +4051,31 @@ msgstr "データ" msgid "structure and data" msgstr "構造とデータ" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "簡易 - 設定するための最小限のオプションのみ表示" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "詳細 - 設定に必要なすべてのオプションを表示" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "詳細 - 上とほぼ同じ、ただし簡易/詳細の選択はなし" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "完全な INSERT 文を作成する" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "長い INSERT 文を作成する" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "上の両方を行う" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "上のどちらでもない" @@ -6284,8 +6273,8 @@ msgstr "" "ユーザ名を所持している場合は、ここに記述します(デフォルトは [kbd]anonymous[/" "kbd])。" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "ユーザ名" @@ -6707,7 +6696,7 @@ msgstr "データベース:" msgid "Table(s):" msgstr "テーブル:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "行:" @@ -7336,7 +7325,7 @@ msgid "No data found for GIS visualization." msgstr "視覚化できる空間情報がありません。" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "返り値が空でした (行数 0)。" @@ -7458,11 +7447,11 @@ msgstr "" "次の値に移動するときは TAB キーを使ってください。CTRL+カーソルキーを使うと自" "由に移動できます" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL クエリを表示" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "id %1$d の行を挿入しました" @@ -7513,7 +7502,7 @@ msgstr "テーブル接頭辞の追加" msgid "Add prefix" msgstr "追加する接頭辞" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "以下のクエリを本当に実行しますか?" @@ -7734,20 +7723,20 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Filter databases by name" msgid "filter databases by name" msgstr "データベース名を絞る" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 #, fuzzy #| msgid "Clear series" msgid "Clear Fast Filter" msgstr "系列をクリアする" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7863,17 +7852,17 @@ msgid "Drop the database (DROP)" msgstr "データベースを削除する (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "構造のみ" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "構造とデータ" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "データのみ" @@ -8297,7 +8286,7 @@ msgstr "1 行目にカラム名を追加する" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8305,7 +8294,7 @@ msgstr "ホスト" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8323,7 +8312,7 @@ msgstr "PHP のバージョン" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9461,7 +9450,7 @@ msgstr "属性" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "その他" @@ -9626,7 +9615,7 @@ msgid "Library" msgstr "ライブラリ" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "バージョン" @@ -10089,71 +10078,292 @@ msgstr "" "特権の内容が一致しなくなることがありますので、作業を続ける前に %s特権の再読み" "込み%s をしてください。" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "特権テーブルには選択したユーザがいません。" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "新しいユーザを追加しました。" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 秒" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 分" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "ログの統計" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "選択期間:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "ログの統計元を選択することができます。" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "結果はクエリ文でグループ化されます。" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "クエリの解析" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "モニタの使用方法" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin モニタは、サーバ構成の最適化を支援し、時間のかかるクエリを追跡する" +"ことができます。後者を行うには、log_output (ログの出力先) にテーブルを設定" +"し、slow_query_log (スロークエリログ) または general_log (一般クエリログ) の" +"いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" +"し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"残念ながらお使いのデータベースサーバは、phpMyAdmin でデータベースのログを分析" +"するために必要である、テーブルのログ機能をサポートしていません。テーブルのロ" +"グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" +"タ機能は使用することができます。" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "モニタの使い方:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"表示されている全てのグラフは、ブラウザよって一定間隔で更新されます。「設定」" +"のところよりグラフを追加や再描画間隔の変更することができ、それぞれのグラフに" +"ある歯車のアイコンを通じて削除が行えます。" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"ログからクエリ分析を行うには、グラフで該当期間を選択します。マウスの左ボタン" +"を押したままグラフの上をドラッグするように移動させてください。こうすること" +"で、グラフの任意の期間を選択できます。グループ毎に分類されたクエリが読み込ま" +"れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" +"をクリックすることで、更なるクエリ解析が可能です。" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "注意事項:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log (一般クエリログ) を有効にすると、5~15% サーバの負荷が増加するこ" +"とがあります。ログから生成される統計は、負荷が集中する作業であることを認識し" +"ておいてください。このような理由から、一般クエリログは短時間だけモニタするよ" +"うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" +"テーブルを空にしておくのが望ましいです。" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "グラフの追加" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "プリセットグラフ" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "状態変数" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "系列の選択:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "一般的なモニタ対象" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "もしくは対象変数名:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "差分値として表示する" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "除数を適用する" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "データ値に単位を追加する" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "この系列を追加する" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "系列をクリアする" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "グラフの系列:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "モニタ開始" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "使用方法/セットアップ" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "グラフの再配置/編集完了" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "強調表示を有効にする" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "再描画間隔" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "1 段のグラフ数" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "モニタ環境設定" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"モニタの環境設定をローカルに保存します。変更されているモニタ環境をエクスポー" +"トできます。" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "デフォルトに戻す" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL の結果" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "生成環境" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "データファイルの増分" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "その他" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "開始" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "合計時間:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "時間" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "閉じる" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "時間" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "この SQL をブックマークする" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "ラベル" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "すべてのユーザがこのブックマークを利用できるようにする" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10174,10 +10384,6 @@ msgstr "クリア" msgid "Bookmark this SQL query:" msgstr "この SQL をブックマークする" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "すべてのユーザがこのブックマークを利用できるようにする" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "同名のブックマークは差し替える" @@ -10316,7 +10522,7 @@ msgstr "オーバーヘッドのあるテーブルを確認する" msgid "Sort" msgstr "ソート" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "なし" @@ -10472,7 +10678,7 @@ msgstr "有効" msgid "Table %1$s has been altered successfully" msgstr "テーブル %1$s は正常に変更されました" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "クエリエラー" @@ -10628,7 +10834,7 @@ msgstr "ZIP アーカイブにエラーがあります:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "修正を保存しました" @@ -10684,7 +10890,7 @@ msgstr "大小を切り替える" msgid "Toggle relation lines" msgstr "リレーションラインの表示切替" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF スキーマの座標をインポート/エクスポートする" @@ -10744,43 +10950,43 @@ msgstr "集計" msgid "Active options" msgstr "アクティブオプション" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "ページが作成されました" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "ページの作成に失敗しました" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "ページ" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "選択したページからインポートする" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "選択したページへエクスポートする" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "ページを作成し、そこへエクスポートする。" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "新しいページの名前: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "倍率にあわせたエクスポート/インポート" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "推奨" @@ -10810,7 +11016,7 @@ msgstr "内部リレーションを追加しました" msgid "Relation deleted" msgstr "リレーションを削除しました" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "デザイナの座標を保存するときにエラーが発生しました。" @@ -11263,212 +11469,6 @@ msgstr "" "す。変更の度に、監視やベンチマークを行い、明確な改善が測定されなかった場合は" "変更した箇所を元に戻します。" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "モニタの使用方法" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin モニタは、サーバ構成の最適化を支援し、時間のかかるクエリを追跡する" -"ことができます。後者を行うには、log_output (ログの出力先) にテーブルを設定" -"し、slow_query_log (スロークエリログ) または general_log (一般クエリログ) の" -"いずれかを有効にする必要があります。なお、general_log は大量のデータを生成" -"し、サーバの負荷を 15% 増加させますので、注意するようにしてください。" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"残念ながらお使いのデータベースサーバは、phpMyAdmin でデータベースのログを分析" -"するために必要である、テーブルのログ機能をサポートしていません。テーブルのロ" -"グ機能は、MySQL 5.1.6 以降でサポートされています。ですが、サーバのグラフモニ" -"タ機能は使用することができます。" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "モニタの使い方:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"ログからクエリ分析を行うには、グラフで該当期間を選択します。マウスの左ボタン" -"を押したままグラフの上をドラッグするように移動させてください。こうすること" -"で、グラフの任意の期間を選択できます。グループ毎に分類されたクエリが読み込ま" -"れ表示されますので、実行されたクエリを確認することができます。SELECT 文の部分" -"をクリックすることで、更なるクエリ解析が可能です。" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "注意事項:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log (一般クエリログ) を有効にすると、5~15% サーバの負荷が増加するこ" -"とがあります。ログから生成される統計は、負荷が集中する作業であることを認識し" -"ておいてください。このような理由から、一般クエリログは短時間だけモニタするよ" -"うにし、それ以上必要がないのであれば、general_log を無効にして一般クエリログ" -"テーブルを空にしておくのが望ましいです。" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "グラフの追加" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "プリセットグラフ" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "状態変数" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "系列の選択:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "一般的なモニタ対象" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "もしくは対象変数名:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "差分値として表示する" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "除数を適用する" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "データ値に単位を追加する" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "この系列を追加する" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "系列をクリアする" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "グラフの系列:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "ログの統計" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "選択期間:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "SELECT、INSERT、UPDATE、DELETE 文のみ取得する" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "結果を扱いやすくするために INSERT 文におけるデータ部を同一のように扱う" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "ログの統計元を選択することができます。" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "結果はクエリ文でグループ化されます。" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "クエリの解析" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 秒" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 分" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "モニタ開始" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "使用方法/セットアップ" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "グラフの再配置/編集完了" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "強調表示を有効にする" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "再描画間隔" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "1 段のグラフ数" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "モニタ環境設定" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "デフォルトに戻す" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12540,26 +12540,26 @@ msgstr "キーは文字、数字[em]それと[/em]特殊文字を含める必要 msgid "Wrong data" msgstr "データが正しくありません" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "デフォルトの表示クエリとしてブックマーク \"%s\" を使用する。" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "ブックマーク %s を作成しました" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP コードとして表示" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "検証した SQL 文" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12572,21 +12572,11 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "テーブル `%s` のインデックスに問題があります" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "この SQL をブックマークする" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "ラベル" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12666,6 +12656,12 @@ msgstr "X 軸の値" msgid "Y-Axis label:" msgstr "Y 軸のラベル:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "開始行" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12811,32 +12807,32 @@ msgstr "表示するカラムの選択" msgid "No column selected." msgstr "行が選択されていません" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "テーブル `%s` に対しての追跡レポート" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" "世代 %1$s を作成しました。%2$s の SQL コマンド追跡機能はアクティブです。" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s で非アクティブです。" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s に対する SQL コマンド追跡機能は、世代 %2$s でアクティブです。" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 文が実行されました。" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12844,117 +12840,117 @@ msgstr "" "作成された一時的なデータベースを使用してダンプを実行することができます。これ" "を実行できる特権を持っていることを確認してください。" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" "一時的なデータベースに対して実行しない場合は、この2行をコメントアウトします。" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL 文をエクスポートしました。ダンプしたものをコピーするか実行するかしてくだ" "さい。" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "世代 %s のスナップショット (SQL コード)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "追跡データ定義コマンドは正常に削除されました" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "追跡データ操作コマンドは正常に削除されました" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "追跡しているコマンド" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "種別:%1$s、期間:%2$s-%3$s、ユーザ:%4$sで絞り込む %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "レポートからこの追跡データを削除する" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "データが存在しません" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "日時" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "データ定義コマンド" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "データ操作コマンド" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 文のダンプ (ファイルでダウンロード)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 文のダンプ" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" "このオプションは、テーブルやそれに含まれるデータを置き換えるかもしれません。" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL 文を実行" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "上の結果をエクスポートする %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "世代を表示する" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s への SQL コマンド追跡を非アクティブにする" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "すぐに非アクティブにする" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s への SQL コマンド追跡をアクティブにする" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "すぐにアクティブにする" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s に世代 %1$s を作成" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "追跡するデータ定義コマンド:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "追跡するデータ操作コマンド:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "世代を作成する" @@ -14330,6 +14326,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert は 0 に設定されています。" +#, fuzzy +#~| msgid "Headers every %s rows" +#~ msgid "Headers every %s rows" +#~ msgstr "%s 行毎にヘッダを表示" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/ka.po b/po/ka.po index a82977748a..c140655a8b 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-12-13 13:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian %s" msgstr[1] "%s match(es) inside table %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "არჩევა" @@ -2659,14 +2660,14 @@ msgstr "არჩევა" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "წაშლა" @@ -2744,48 +2745,36 @@ msgctxt "Last page" msgid "End" msgstr "დასასრული" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Startup" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "ველების რაოდენობა" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "ორშ" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "ჰორიზონტალური" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "ვერტიკალური" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "ჩანიშნული მოთხოვნის გაშვება" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sort by key" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2812,97 +2801,97 @@ msgstr "Sort by key" msgid "Options" msgstr "პარამეტრები" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Full Texts" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "ორობითი შიგთავსის ჩვენება" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "აჩვენეთ ორობით შინაარსი როგორც HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "ინფორმაცია ბრაუზერის შესახებ" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "სტრიქონი წაიშალა" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "შეიძლება იყოს მიახლოებითი. იხილეთ [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "მოთხოვნაში" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "სულ" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "მოთხოვნას დასჭირდა %01.4f წმ" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2911,8 +2900,8 @@ msgstr "მოთხოვნას დასჭირდა %01.4f წმ" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2923,48 +2912,48 @@ msgstr "" msgid "Check All" msgstr "ყველას შემოწმება" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ექსპორტი" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Create relation" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "ხედის ამობეჭდვა" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "ხედის ამობეჭდვა (სრული ტექსტებით)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF სქემის ჩვენება" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "ბმული ვერ მოიძებნა" @@ -3039,38 +3028,38 @@ msgstr "ინდექსი არაა განსაზღვრული! #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "ინდექსები" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "უნიკალური" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "შეკუმშული" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinality" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "კოლაცია" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "კომენტარი" @@ -3103,14 +3092,14 @@ msgstr "ხედო" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "სტრუქტურა" @@ -3123,12 +3112,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "ძებნა" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "ჩასმა" @@ -3262,19 +3251,19 @@ msgstr[1] "ჩაისვა %1$d სტრიქონი." msgid "Error while creating PDF:" msgstr "Allows reading data." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "ცხრილების დათვლა" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3529,7 +3518,7 @@ msgid "Maximum rows to plot" msgstr "Maximum number of rows to display" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3883,7 +3872,7 @@ msgstr "" msgid "Max: %s%s" msgstr "მაქს: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3948,7 +3937,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ძრავები" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -3989,50 +3978,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web server upload directory" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "ცარიელი" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "დაბეჭდვა" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "შეიქმნა" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "უკანასკნელი განახლება" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Last check" @@ -4155,60 +4144,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "შემდეგი" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "გათიშულია" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Unclosed quote" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4219,7 +4208,7 @@ msgstr "Unclosed quote" msgid "structure" msgstr "სტრუქტურა" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4229,7 +4218,7 @@ msgstr "სტრუქტურა" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4241,35 +4230,35 @@ msgstr "" msgid "structure and data" msgstr "სტრუქტურა და მონაცემები" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "სრული ჩასმები" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Extended inserts" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6451,8 +6440,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "მომხმარებელი:" @@ -6891,7 +6880,7 @@ msgstr "მონაცემთა ბაზები" msgid "Table(s):" msgstr "ცხრილები" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7503,7 +7492,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7629,11 +7618,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ჩამატებული სტრიქონის id: %1$d" @@ -7690,7 +7679,7 @@ msgstr "ახალი ველის დამატება" msgid "Add prefix" msgstr "ახალი ველის დამატება" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7914,18 +7903,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "ცხრილის სახელი" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8030,17 +8019,17 @@ msgid "Drop the database (DROP)" msgstr "მონაცემთა ბაზები არაა" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "მხოლოდ სტრუქტურა" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "სტრუქტურა და მონაცემები" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "მხოლოდ მონაცემები" @@ -8492,7 +8481,7 @@ msgstr "Put fields names in the first row" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8500,7 +8489,7 @@ msgstr "ჰოსტი" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8518,7 +8507,7 @@ msgstr "PHP-ის ვერსია" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9747,7 +9736,7 @@ msgstr "ატრიბუტები" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "ექსტრა" @@ -9920,7 +9909,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "სპარსული" @@ -10386,66 +10375,289 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "თქვენ დაამატეთ ახალი მომხმარებელი." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "წამში" +msgstr[1] "წამში" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "in use" +msgstr[1] "in use" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "სტატისტიკის ჩევნება" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "ყველას მონიშნვა" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "მოთხოვნის ტიპი" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "ინფორმაცია" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "ახალი ველის დამატება" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Rename database to" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "ცხრილების არჩევა" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "ცხრილის არასწორი სახელი" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "ახალი სერვერის დამატება" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL მოთხოვნები" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Startup" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "განახლება" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR textarea columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Restore default value" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-ის შედეგი" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "დაგენერირება" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "მონაცემთა ფაილები" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Startup" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "სულ" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "დრო" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "დრო" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10464,10 +10676,6 @@ msgstr "გაწმენდა" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10597,7 +10805,7 @@ msgstr "" msgid "Sort" msgstr "დალაგება" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10767,7 +10975,7 @@ msgstr "ეფექტური" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -10931,7 +11139,7 @@ msgstr "შეცდომა ZIP არქივში:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "ცვლილებები შენახულია" @@ -10989,7 +11197,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "To select relation, click :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -11064,52 +11272,52 @@ msgstr "შექმნა" msgid "Active options" msgstr "ცხრილის პარამეტრები" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Table %1$s has been created." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "pages" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "ფაილების შემოტანა" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Export/Import to scale" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "ახალი ინდექსის შექმნა" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "მომხმარებლის სახელი" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Export/Import to scale" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "რეკომენდებული" @@ -11137,7 +11345,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11566,214 +11774,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "ინფორმაცია" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "ახალი ველის დამატება" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Rename database to" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "ცხრილების არჩევა" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "ცხრილის არასწორი სახელი" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "ახალი სერვერის დამატება" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL მოთხოვნები" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "სტატისტიკის ჩევნება" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "ყველას მონიშნვა" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "მოთხოვნის ტიპი" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "წამში" -msgstr[1] "წამში" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "in use" -msgstr[1] "in use" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Startup" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "განახლება" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR textarea columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Restore default value" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12809,49 +12809,39 @@ msgstr "Key should contain letters, numbers [em]and[/em] special characters" msgid "Wrong data" msgstr "მონაცემთა ბაზები არაა" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark table" msgid "Bookmark not created" msgstr "ცხრილის ჩანიშვნა" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP კოდის სახით ჩვენება" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validate SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Label" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12947,6 +12937,12 @@ msgstr "მნიშვნელობა" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Startup" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13099,150 +13095,150 @@ msgstr "აირჩიეთ საჩვენებელი ველი" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Allows inserting and replacing data." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "მონაცემთა ბაზები არაა" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "მონაცემები" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Export defaults" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Deactivate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "Missing data for %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Create relation" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Create relation" @@ -14488,6 +14484,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "max. concurrent connections" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "ჩანიშნული მოთხოვნის გაშვება" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/kk.po b/po/kk.po index fb1e7b62e9..df6df50439 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh %2$s" msgstr[1] "%1$s кестедегi сәйкестiктер %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Шолу" @@ -2413,14 +2414,14 @@ msgstr "Шолу" msgid "Delete the matches for the %s table?" msgstr "Кесте %s үшін сәйкестіктерді өшіреміз бе?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Жою" @@ -2482,43 +2483,32 @@ msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Sort" -msgid "Start row:" -msgstr "Сұрыптау" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2545,89 +2535,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2636,8 +2626,8 @@ msgstr "" msgid "With selected:" msgstr "Белгi соғылғандарды:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2648,45 +2638,45 @@ msgstr "Белгi соғылғандарды:" msgid "Check All" msgstr "Барлығын белгілеу" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Баспаға шығару түрі" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2761,38 +2751,38 @@ msgstr "Индексі анықталмаған!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индекстер" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Бірегей" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Қапталған" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Салыстыру" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Пікірлеу" @@ -2825,14 +2815,14 @@ msgstr "Түр" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2845,12 +2835,12 @@ msgstr "" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Іздеу" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "" @@ -2977,15 +2967,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3224,7 +3214,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3566,7 +3556,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3625,7 +3615,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3664,49 +3654,49 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Тазарту" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Құру" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Соңғы жаңартылым" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Соңғы тексерім" @@ -3821,58 +3811,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Қою" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Тест" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3882,7 +3872,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3892,7 +3882,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3902,31 +3892,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5868,8 +5858,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6259,7 +6249,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6817,7 +6807,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6933,11 +6923,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6988,7 +6978,7 @@ msgstr "Кестениң префиксін ауыстыру" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7210,16 +7200,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7317,17 +7307,17 @@ msgid "Drop the database (DROP)" msgstr "(DROP) дерекқорын өшіру" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Тек құрылымы ғана" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Құрылымы және мәліметтері" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Тек мәліметтер ғана" @@ -7737,13 +7727,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7761,7 +7751,7 @@ msgstr "Нұсқа" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8799,7 +8789,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8962,7 +8952,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9409,68 +9399,261 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "Шығару" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Басқа" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Сен" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Толық уақыт:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Уақыт" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Жабу" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Уақыт" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9489,10 +9672,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9618,7 +9797,7 @@ msgstr "Ықшамдауды қажет ететіндерді белгілеу" msgid "Sort" msgstr "Сұрыптау" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9777,7 +9956,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9915,7 +10094,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9971,7 +10150,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10029,39 +10208,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10089,7 +10268,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10493,186 +10672,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11595,43 +11594,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -11711,6 +11702,12 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Sort" +msgid "Start row:" +msgstr "Сұрыптау" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11853,143 +11850,143 @@ msgstr "Сұраныс орындалуы үшін, көрсетілімдегі msgid "No column selected." msgstr "Бірде-бір қатар таңдалынбады" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/kn.po b/po/kn.po index 7cb22c892e..3035aa147b 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-04 15:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kannada %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "" @@ -3736,54 +3728,54 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3793,7 +3785,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3803,7 +3795,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3813,31 +3805,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5771,8 +5763,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6158,7 +6150,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6714,7 +6706,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6830,11 +6822,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6879,7 +6871,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7101,16 +7093,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7206,17 +7198,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7620,13 +7612,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7640,7 +7632,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8666,7 +8658,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8827,7 +8819,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9272,54 +9264,247 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9338,10 +9523,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9467,7 +9648,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9621,7 +9802,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9756,7 +9937,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9812,7 +9993,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9870,39 +10051,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9930,7 +10111,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10334,186 +10515,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11430,43 +11431,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11542,6 +11535,10 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11670,143 +11667,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/ko.po b/po/ko.po index afb4040350..1ff96adb7f 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,10 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-15 08:50+0200\n" -"Last-Translator: Tae-rok Hwang \n" -"Language-Team: Korean \n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" +"PO-Revision-Date: 2013-06-18 13:51+0200\n" +"Last-Translator: Yungu Kim \n" +"Language-Team: Korean \n" "Language: ko\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -43,7 +44,7 @@ msgid "Search:" msgstr "검색:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -69,24 +70,24 @@ msgstr "검색:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "실행" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "키 이름" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "설명" @@ -105,7 +106,7 @@ msgstr "" "%s 파일은 이 시스템에서 이용할 수 없습니다. www.phpmyadmin.net에 방문하여 정" "보를 확인하시기 바랍니다." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "데이터베이스 %1$s가 생성되었습니다." @@ -133,7 +134,7 @@ msgstr "테이블 설명:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "컬럼명" @@ -156,7 +157,7 @@ msgstr "컬럼명" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "종류" @@ -173,7 +174,7 @@ msgstr "종류" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -188,7 +189,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "기본값" @@ -230,9 +231,9 @@ msgstr "설명" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "아니오" @@ -257,9 +258,9 @@ msgstr "아니오" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "예" @@ -311,7 +312,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "테이블" @@ -386,7 +387,7 @@ msgstr "추적된 테이블" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "데이터베이스" @@ -394,17 +395,17 @@ msgstr "데이터베이스" msgid "Last version" msgstr "최근 버전" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "생성됨" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "수정됨" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "상태" @@ -417,7 +418,7 @@ msgstr "상태" msgid "Action" msgstr "실행" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "보기" @@ -426,18 +427,18 @@ msgid "Delete tracking data for this table" msgstr "이 테이블에 대한 추적 데이터를 제거" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "삭제" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "활성" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "비활성" @@ -445,11 +446,11 @@ msgstr "비활성" msgid "Versions" msgstr "버전" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "추적 보고서" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "구조 요약" @@ -650,7 +651,7 @@ msgid "Could not load import plugins, please check your installation!" msgstr "" "가져오기 플러그인을 로드할 수 없습니다. 올바로 설치되었는지 확인해주세요!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "북마크 %s가 생성되었습니다." @@ -676,7 +677,7 @@ msgstr "" "파싱된 데이터가 없지만, 이것은 보통 phpMyAdmin이 php 시간 제한을 늘리지 않고" "는 이 가져오기를 마칠 수 없음을 뜻합니다." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -883,7 +884,7 @@ msgstr "" "Server 가 Suhosin 으로 운영중입니다. 이로 인해 발생할 수 있는 문제는 " "%sdocumentation%s 에서 확인이 가능합니다." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." @@ -892,7 +893,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." msgid "Do you really want to execute \"%s\"?" msgstr "정말로 \"%s\"을/를 실행하시겠습니까?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "이 데이터베이스 전체를 제거하려고 합니다!" @@ -976,8 +977,8 @@ msgstr "사용권한을 다시 불러옵니다." msgid "Removing Selected Users" msgstr "선택한 사용자를 삭제" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "닫기" @@ -1103,13 +1104,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1148,7 +1149,7 @@ msgid "Traffic" msgstr "소통량" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "설정" @@ -1168,13 +1169,14 @@ msgstr "차트에 그리드 추가" msgid "Please add at least one variable to the series" msgstr "최소 한개이상의 변수를 시리즈에 추가하십시오" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "없음" @@ -1274,7 +1276,7 @@ msgstr "설정 변경" msgid "Current settings" msgstr "현재 설정" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "차트 제목" @@ -1358,7 +1360,7 @@ msgstr "SQL 해석" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "시간" @@ -1452,7 +1454,7 @@ msgstr "가져온 설정과 차트 격자를 그리는데 실패했습니다. #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "가져오기" @@ -1509,7 +1511,7 @@ msgid "Cancel" msgstr "취소" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "불러오는 중" @@ -1657,10 +1659,10 @@ msgstr "질의 상자 숨기기" msgid "Show query box" msgstr "질의 상자 보이기" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1670,7 +1672,7 @@ msgstr "수정" msgid "No rows selected" msgstr "선택된 행이 없습니다" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1752,7 +1754,7 @@ msgstr "데이터 포인트 내용" msgid "Ignore" msgstr "무시" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "복사" @@ -1768,7 +1770,7 @@ msgstr "줄(열) 구분자" msgid "Polygon" msgstr "폴리곤" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "기하데이터" @@ -2249,32 +2251,32 @@ msgstr "시간당" msgid "per day" msgstr "하루당" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "이미 존재하고 있는 환경설정 파일 (%s) 을 읽을 수 없습니다." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "설정 파일에 잘못된 권한이 지정되어있습니다. 익명 쓰기 권한이면 안됩니다." -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "글꼴 크기" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "오름차순" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2289,7 +2291,7 @@ msgstr "컬럼명:" msgid "Sort:" msgstr "정렬:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "보기:" @@ -2356,7 +2358,9 @@ msgstr "질의 실행" msgid "" "The server is not responding (or the local server's socket is not correctly " "configured)." -msgstr "서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 않습니다)." +msgstr "" +"서버가 응답하지 않습니다 (또는 로컬 서버의 소켓이 현재 제대로 구성되어 있지 " +"않습니다)." #: libraries/DatabaseInterface.class.php:2052 msgid "The server is not responding." @@ -2404,8 +2408,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s 에서 %1$s 건 일치" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "보기" @@ -2414,14 +2418,14 @@ msgstr "보기" msgid "Delete the matches for the %s table?" msgstr "테이블 %s에 대하여 일치하는 것들을 삭제 하겠습니까?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "삭제" @@ -2483,41 +2487,32 @@ msgctxt "Last page" msgid "End" msgstr "마지막" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "시작 행:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "행 갯수:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "모드:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "수평(가로)" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "수평 (rotated headers)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "수직(세로)" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "%s 행마다 헤더 반복" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "키로 정렬" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2544,68 +2539,68 @@ msgstr "키로 정렬" msgid "Options" msgstr "옵션" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "텍스트의 일부분" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "전체 텍스트" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "관계키" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "연관된 행 표시" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "바이너리 항목 보이기" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB 내용 보기" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "2진수 데이터를 HEX형식으로 표시" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "브라우저 정보 숨기기" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "잘 알려진 텍스트" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "잘 알려진 바이너리" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "선택한 줄(레코드)을 삭제 하였습니다." -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Kill" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "근사값입니다. [doc@faq3-11]FAQ 3.11[/doc]를 참조하세요." -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "질의(in query)" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2613,21 +2608,21 @@ msgid "" msgstr "" "이 뷰는 최소 이 숫자 이상의 열을 가지고 있습니다. %s문서%s를 참조해 주십시오." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "행(레코드) 보기" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "합계" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "질의 실행시간 %01.4f 초" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2636,8 +2631,8 @@ msgstr "질의 실행시간 %01.4f 초" msgid "With selected:" msgstr "선택한 것을:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2648,45 +2643,45 @@ msgstr "선택한 것을:" msgid "Check All" msgstr "모두 체크" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "내보내기" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "뷰 생성" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "쿼리 결과 처리방법" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "인쇄용 보기" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "인쇄용 보기 (전체 텍스트)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "차트 표시" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "GIS 데이터를 시각화" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "링크를 찾을 수 없습니다." @@ -2764,38 +2759,38 @@ msgstr "인덱스가 설정되지 않았습니다!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "인덱스" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "고유값" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "관계성" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "데이터정렬방식" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "설명" @@ -2829,14 +2824,14 @@ msgstr "뷰" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "구조" @@ -2849,12 +2844,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "검색" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "삽입" @@ -2978,15 +2973,15 @@ msgstr[0] "%1$d 열이 삽입되었습니다." msgid "Error while creating PDF:" msgstr "PDF 생성 실패:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "최근 테이블을 저장할 수 없습니다." -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "최근 테이블" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "최근 테이블이 없습니다." @@ -3226,7 +3221,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3270,17 +3265,17 @@ msgstr "" #: libraries/Theme_Manager.class.php:137 #, php-format msgid "Default theme %s not found!" -msgstr "기본테마 %s 를 찾을 수 없습니다." +msgstr "기본테마 %s를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:194 #, php-format msgid "Theme %s not found!" -msgstr "%s 테마를 찾을 수 없습니다." +msgstr "%s 테마를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:271 #, php-format msgid "Theme path not found for theme %s!" -msgstr "%s 테마를 위한 테마 경로를 찾을 수 없습니다." +msgstr "%s 테마의 경로를 찾을 수 없음!" #: libraries/Theme_Manager.class.php:363 msgid "Theme:" @@ -3592,8 +3587,7 @@ msgstr "" msgid "Max: %s%s" msgstr "최대: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 -#| msgid "SQL query" +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL 질의:" @@ -3652,7 +3646,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "인라인" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "프로파일링" @@ -3691,49 +3685,49 @@ msgstr "%s 기능은 알려진 버그가 있습니다. %s 문서를 참조하십 msgid "Click to toggle" msgstr "토글하려면 클릭" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "업로드 파일:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "웹 서버 업로드 디렉토리중 %s에서 선택:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "업로드 디렉토리에 접근할 수 없습니다" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "업로드할 파일이 없습니다." -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "비우기" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "실행하기" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "인쇄" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "생성" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "마지막 업데이트" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "마지막 검사" @@ -3822,7 +3816,6 @@ msgstr "서버 %1$s의 호스트 이름이 잘못되었습니다. 설정을 확 #: libraries/common.inc.php:661 #, php-format -#| msgid "Server" msgid "Server %d" msgstr "서버 %d" @@ -3851,56 +3844,54 @@ msgstr "어떤 공격을 받고있을 가능성이 있습니다" msgid "numeric key detected" msgstr "전역 변수에서 숫자로 된 키가 발견 되었습니다" -#: libraries/config.values.php:49 libraries/config.values.php:64 -#| msgid "Ins" +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "아이콘" -#: libraries/config.values.php:50 libraries/config.values.php:65 -#| msgid "Test" +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "텍스트" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "둘다" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "아무데도" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "왼쪽" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "오른쪽" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "클릭" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "더블 클릭" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "사용불가" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "열기" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "닫기" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3910,7 +3901,7 @@ msgstr "닫기" msgid "structure" msgstr "구조" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3920,7 +3911,7 @@ msgstr "구조" msgid "data" msgstr "데이터" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3930,35 +3921,35 @@ msgstr "데이터" msgid "structure and data" msgstr "구조와 데이터 모두" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "빠른 보기 - 설정할 최소 옵션만을 보여줍니다" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "커스텀 - 설정 가능한 모든 옵션을 보여줍니다" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "커스텀 - 위와 같음. 단, 빠른 보기/커스텀 선택 없음" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Delayed inserts" msgid "complete inserts" msgstr "지연된 삽입" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Delayed inserts" msgid "extended inserts" msgstr "지연된 삽입" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "위의 것 모두" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "위의 것 모두 아님" @@ -4838,7 +4829,9 @@ msgstr "phpMyAdmin에서 보여지는 일부 경고 비활성화" msgid "" "Enable [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] compression for import " "and export operations" -msgstr "가져오기 또는 내보내기 작업에 [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] 압축 사용" +msgstr "" +"가져오기 또는 내보내기 작업에 [a@http://en.wikipedia.org/wiki/Gzip]gzip[/a] " +"압축 사용" #: libraries/config/messages.inc.php:235 msgid "GZip" @@ -4955,8 +4948,9 @@ msgid "" "only occurs for the current server. Setting this to FALSE makes it easy to " "forget to log out from other servers when connected to multiple servers." msgstr "" -"활성화 할 경우 로그아웃 시 모든 서버의 쿠키를 삭제하며 비활성화 할 경우 로그아웃 시 현재 서버만 적용됩니다. FALSE로 설정하면 " -"여러 서버에 연결되어 있을 때 다른 서버에서 로그아웃 하는 것을 잊을 수 있습니다." +"활성화 할 경우 로그아웃 시 모든 서버의 쿠키를 삭제하며 비활성화 할 경우 로그" +"아웃 시 현재 서버만 적용됩니다. FALSE로 설정하면 여러 서버에 연결되어 있을 " +"때 다른 서버에서 로그아웃 하는 것을 잊을 수 있습니다." #: libraries/config/messages.inc.php:272 msgid "Delete all cookies on logout" @@ -5957,8 +5951,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "사용자명" @@ -6364,7 +6358,7 @@ msgstr "데이터베이스 :" msgid "Table(s):" msgstr "테이블 :" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "행 :" @@ -6941,7 +6935,7 @@ msgid "No data found for GIS visualization." msgstr "GIS 시각화를 위한 데이터를 찾을 수 없습니다." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "결과값이 없습니다. (빈 레코드 리턴)." @@ -7058,11 +7052,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "TAB 키나 CTRL+화살표로 값 사이를 이동할 수 있습니다" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL 쿼리 보기" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7117,7 +7111,7 @@ msgstr "인덱스 추가" msgid "Add prefix" msgstr "인덱스 추가" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "정말로 다음 쿼리를 실행하시겠습니까?" @@ -7344,16 +7338,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "이름으로 데이터베이스 필터링" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "이름으로 필터링" @@ -7453,17 +7447,17 @@ msgid "Drop the database (DROP)" msgstr "데이터베이스 제거 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "구조만" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "구조와 데이터 모두" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "데이터만" @@ -7885,13 +7879,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7909,7 +7903,7 @@ msgstr "PHP 확장:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8997,7 +8991,7 @@ msgstr "보기" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "추가" @@ -9172,7 +9166,7 @@ msgid "Library" msgstr "라이브러리" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "버전" @@ -9628,68 +9622,279 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "선택한 사용자는 사용권한 테이블에 존재하지 않습니다." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "새 사용자를 추가했습니다." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 초" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 분" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "로그 통계" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "통계가 생성될 로그를 선택하세요." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "질의 분석기" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +#, fuzzy +#| msgid "Pause monitor" +msgid "Using the monitor:" +msgstr "모니터링 정지" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "차트 추가" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "차트 삭제" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "All status variables" +msgid "Status variable(s)" +msgstr "모든 상태 변수" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Foreign Key" +msgid "Select series:" +msgstr "외래키 선택" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name:" +msgid "or type variable name:" +msgstr "잘못된 테이블 이름:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +#, fuzzy +#| msgid "Advisor" +msgid "Apply a divisor" +msgstr "시스템 분석 / 조언" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add user" +msgid "Add this series" +msgstr "사용자 추가" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "모니터링 시작" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "강조 표시 사용" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +#| msgid "Generate" +msgid "Refresh rate" +msgstr "생성" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add columns" +msgid "Chart columns" +msgstr "세로열 추가하기" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL 결과" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "생성" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "데이터 파일 증가량" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "기타" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "상태" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "전체 시간:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "시간" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "닫기" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "시간" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "이 SQL 질의를 북마크함" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9708,10 +9913,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9848,7 +10049,7 @@ msgstr "오버헤드를 가진 테이블들을 체크" msgid "Sort" msgstr "정렬" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "없음" @@ -10013,7 +10214,7 @@ msgstr "실제량" msgid "Table %1$s has been altered successfully" msgstr "테이블 %1$s 가 성공적으로 수정되었습니다" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "질의 오류" @@ -10119,7 +10320,6 @@ msgid "Tracking of %s is activated." msgstr "%s의 트래킹이 활성화되었습니다." #: libraries/user_preferences.inc.php:29 -#| msgid "Change settings" msgid "Manage your settings" msgstr "나만의 설정 관리" @@ -10157,7 +10357,7 @@ msgstr "ZIP 압축파일 오류:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다." @@ -10219,7 +10419,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10291,41 +10491,41 @@ msgstr "" msgid "Active options" msgstr "실행" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy #| msgid "Database %1$s has been created." msgid "Page has been created" msgstr "데이터베이스 %1$s가 생성되었습니다." -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "페이지 생성 실패" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "선택된 페이지에서 가져오기" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "선택된 페이지로 내보내기" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 #, fuzzy #| msgid "Recommendation" msgid "recommended" @@ -10355,7 +10555,7 @@ msgstr "" msgid "Relation deleted" msgstr "릴레이션 제거됨" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10777,204 +10977,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -#, fuzzy -#| msgid "Pause monitor" -msgid "Using the monitor:" -msgstr "모니터링 정지" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "차트 추가" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "차트 삭제" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "All status variables" -msgid "Status variable(s)" -msgstr "모든 상태 변수" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Foreign Key" -msgid "Select series:" -msgstr "외래키 선택" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name:" -msgid "or type variable name:" -msgstr "잘못된 테이블 이름:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -#, fuzzy -#| msgid "Advisor" -msgid "Apply a divisor" -msgstr "시스템 분석 / 조언" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add user" -msgid "Add this series" -msgstr "사용자 추가" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "로그 통계" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "통계가 생성될 로그를 선택하세요." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "질의 분석기" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 초" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 분" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "모니터링 시작" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "강조 표시 사용" - -#: server_status_monitor.php:708 -#, fuzzy -#| msgid "Generate" -msgid "Refresh rate" -msgstr "생성" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add columns" -msgid "Chart columns" -msgstr "세로열 추가하기" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11911,26 +11913,26 @@ msgstr "키는 문자, 숫자 [em]그리고[/em] 특수문자가 포함되어야 msgid "Wrong data" msgstr "잘못된 데이터" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "북마크 %s가 생성되었습니다." -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP 코드 보기" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL 검사" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -11942,19 +11944,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 격자창 편집, 체크박스, 편집, " "복사, 삭제 기능을 사용할 수 없습니다." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "이 SQL 질의를 북마크함" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "표시할 데이터 없음" @@ -12030,6 +12024,10 @@ msgstr "X 값" msgid "Y-Axis label:" msgstr "Y축 레이블:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "시작 행:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12176,150 +12174,150 @@ msgstr "출력할 필드 선택" msgid "No column selected." msgstr "선택된 행이 없습니다" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, fuzzy, php-format #| msgid "Tracking report" msgid "Tracking report for table `%s`" msgstr "추적 보고서" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 문장이 실행되었습니다." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "필요치 않을 경우 이 두 줄을 주석처리하시기 바랍니다." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 구문이 추출되었습니다. 덤프된 내용을 복사하거나 실행하세요." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "버전 %s 스냅샷 (SQL 코드)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 #, fuzzy #| msgid "Tracking report" msgid "Tracking statements" msgstr "추적 보고서" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "이 테이블에 대한 추적 데이터를 제거" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "데이터 없음" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "날짜" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 #, fuzzy #| msgid "Data point content" msgid "Data definition statement" msgstr "데이터 포인트 내용" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 덤프(파일 다운로드)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 덤프" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "이 옵션은 테이블과 그 안에 담겨 있는 데이터를 교체하게 됩니다." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL 실행" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "%s로 내보내기" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "버전 보기" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s 에 대한 추적을 비활성화하기" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "지금 비활성화" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s 에 대한 추적을 활성화하기" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "지금 활성화" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy #| msgid "Last version" msgid "Create version" @@ -13479,6 +13477,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert가 0으로 설정되었습니다." +#~ msgid "Headers every %s rows" +#~ msgstr "%s 행마다 헤더 반복" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/lt.po b/po/lt.po index 3bdaf45d3d..b9c83b1b17 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-16 14:41+0200\n" "Last-Translator: Rytis Slatkevičius \n" "Language-Team: Lithuanian %s" msgstr[2] "%s atitikmenų lentelėse %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Peržiūrėti" @@ -2495,14 +2496,14 @@ msgstr "Peržiūrėti" msgid "Delete the matches for the %s table?" msgstr "Ištrinti sutapimus %s lentelėje(ei)?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Trinti" @@ -2574,45 +2575,34 @@ msgctxt "Last page" msgid "End" msgstr "Pabaiga" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Pradėti eilute" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Eilučių skaičius:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Režimas" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontaliai" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontalūs (pasukti pavadinimai)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikaliai" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Antraštės kas %s eilučių" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Rūšiuoti pagal raktą" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2639,70 +2629,70 @@ msgstr "Rūšiuoti pagal raktą" msgid "Options" msgstr "Nustatymai" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Tekstus rodyti dalinai" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Tekstus rodyti pilnai" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Sąryšių raktas" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Ryšių rodymo stulpelis" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Rodyti dvejetainį turinį" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Rodyti BLOB turinį" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Rodyti dvejetainį turinį kaip šešioliktainį" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Naršyklės transformacija" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Eilutė buvo ištrinta" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Stabdyti procesą" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Gali būti apytikslis. Žiūrėkite [doc@faq3-11]DUK 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "užklausa vykdoma" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2711,21 +2701,21 @@ msgstr "" "Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos " "%sdokumentacijoje%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Rodomi įrašai" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "iš viso" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Užklausa užtruko %01.4f sek." -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2734,8 +2724,8 @@ msgstr "Užklausa užtruko %01.4f sek." msgid "With selected:" msgstr "Pasirinktus:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2746,45 +2736,45 @@ msgstr "Pasirinktus:" msgid "Check All" msgstr "Pažymėti visas" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksportuoti" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Sukurti rodinį" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Veiksmai su užklausos rezultatais" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Spausdinti struktūrą" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Spausdinti rezultatus (su pilnais tekstais)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Rodyti diagramą" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Sąryšis nerastas" @@ -2863,38 +2853,38 @@ msgstr "Nėra aprašytų indeksų!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksai" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikalus" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Suspausta" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Elementų skaičius" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Palyginimas" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentaras" @@ -2928,14 +2918,14 @@ msgstr "Rodinys" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktūra" @@ -2948,12 +2938,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Paieška" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Įterpti" @@ -3083,15 +3073,15 @@ msgstr[2] "Įterpta %1$d eilučių." msgid "Error while creating PDF:" msgstr "Klaida sudarinėjant PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Negalėjo išsaugoti paskiausios lentelės" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Paskiausios lentelės" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nėra jokių paskiausių lentelių" @@ -3340,7 +3330,7 @@ msgid "Maximum rows to plot" msgstr "Maksimalus skaičius eilučių rodymui" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Naršyti išorines reikšmes" @@ -3698,7 +3688,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Didžiausias dydis: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3759,7 +3749,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Redaguoti čia" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiliavimas" @@ -3798,49 +3788,49 @@ msgstr "%s funkcionalumas paveiktas žinomos klaidos, žiūrėti %s" msgid "Click to toggle" msgstr "Spustelėkite suskleidimui/atskleidimui" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Naršyti savo kompiuteryje:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Pasirinkti iš saityno serverio atsisiuntimų katalogą %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Aplankas, kuris nurodytas įkeliamiems failams, nepasiekiamas" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nėra failų išsiuntimui" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Išvalyti" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Vykdyti" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Spausdinti" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Sukurta" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Paskutinis atnaujinimas" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Paskutinis patikrinimas" @@ -3962,58 +3952,58 @@ msgstr "galimas pažeidžiamumas" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Įterpiant" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Išbandyti" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Abu" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Niekur" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Kairė" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Dešinė" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Išjungta" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Atverti" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Uždarytas" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4023,7 +4013,7 @@ msgstr "Uždarytas" msgid "structure" msgstr "struktūra" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4033,7 +4023,7 @@ msgstr "struktūra" msgid "data" msgstr "duomenys" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4043,32 +4033,32 @@ msgstr "duomenys" msgid "structure and data" msgstr "struktūra ir duomenys" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Greitas - rodomi tik minimalūs nustatymai" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Individualizuotas - rodyti visus nustatymus" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" "Individualizuotas - kaip paminėtas, bet be greito/adaptuoto pasirinkimo" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "užbaigti įterpimus" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "praplėsti įterpimus" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "abu iš paminėtų" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nei vieną iš paminėtų" @@ -6240,8 +6230,8 @@ msgstr "" "Jeigu Jūs turite individualizuotą slapyvardį, parašykite jį čia (numatytasis " "yra [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Vartotojo vardas" @@ -6652,7 +6642,7 @@ msgstr "Duomenų bazė(s):" msgid "Table(s):" msgstr "Lentelė(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Eilutės:" @@ -7248,7 +7238,7 @@ msgid "No data found for GIS visualization." msgstr "Nerasta duomenų GIS vizualizavimui." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)." @@ -7375,11 +7365,11 @@ msgid "" msgstr "" "Šokinėjimui tarp reikšmių naudokite TAB mygtuką arba naudokite CTRL+rodyklės" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Rodoma SQL užklausa" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Įterpto įrašo id: %1$d" @@ -7430,7 +7420,7 @@ msgstr "Pridėti lentelės priešdėlį" msgid "Add prefix" msgstr "Pridėti priešdėlį" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7655,18 +7645,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Pakeisti lentelės rikiavimą pagal:" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7766,17 +7756,17 @@ msgid "Drop the database (DROP)" msgstr "Pašalinti duomenų bazę (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tik struktūra" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktūra ir duomenys" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tik duomenys" @@ -8204,7 +8194,7 @@ msgstr "Stulpelių pavadinimus įrašyti pirmoje eilutėje" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8212,7 +8202,7 @@ msgstr "Darbinė stotis" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8230,7 +8220,7 @@ msgstr "PHP versija" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9401,7 +9391,7 @@ msgstr "Atributai" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Papildomai" @@ -9566,7 +9556,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versija" @@ -10041,70 +10031,273 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Privilegijų lentelėje pasirinktas vartotojas nerastas." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Jūs sukūrėte naują vartotoją." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekundė" +msgstr[1] "Sekundės" +msgstr[2] "Sekundžių" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutė" +msgstr[1] "Minutė" +msgstr[2] "Minučių" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Registruoti statistiką" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Pasirinktas laiko tarpas:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Užklausos analizatorius" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitor instrukcijos" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Pridėti diagramą" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove chart" +msgid "Preset chart" +msgstr "Pašalinti diagramą" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Būsenos kintamasis(ieji)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Pasirinkite eiles:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "arba įveskite kintamojo vardą:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Pridėti šią eilę" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Eilės diagramoje:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Paleisti Monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrukcijos/Diegimas" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Įjungti paryškinimą" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Naujinimo dažnis" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Diagramos stulpeliai" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagramos išdėstymas" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Atstatyti numatytąsias reikšmes" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultatas" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Sugeneravo" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Duomenų failai" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Kita" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "Paleisti" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Iš viso užtruko:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Laikas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Uždaryti" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Laikas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Šios SQL užklausą pasižymėti kaip" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Nuorodos Antraštė" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Leisti kitiems vartotojams naudotis šia žyme" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10125,10 +10318,6 @@ msgstr "Išvalyti" msgid "Bookmark this SQL query:" msgstr "Šios SQL užklausą pasižymėti kaip" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Leisti kitiems vartotojams naudotis šia žyme" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu" @@ -10267,7 +10456,7 @@ msgstr "Pažymėti turinčias perteklių" msgid "Sort" msgstr "Rūšiuoti" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Jokio" @@ -10427,7 +10616,7 @@ msgstr "Efektyvus" msgid "Table %1$s has been altered successfully" msgstr "Lentelė %1$s sėkmingai pakeista" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Užklausos klaida" @@ -10590,7 +10779,7 @@ msgstr "Klaida ZIP archyve:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Pakeitimai išsaugoti" @@ -10649,7 +10838,7 @@ msgstr "Suskleisti/Išskleisti" msgid "Toggle relation lines" msgstr "Sąryšio pasirinkimui, paspauskite:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importuoti/eksportuoti koordinates PDF schemai" @@ -10713,43 +10902,43 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Puslapis sukurtas" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Puslapio kūrimas nepavyko" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Puslapis" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importuoti iš pasirinkto puslapio" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Sukurti puslapį ir eksportuoti į jį" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Naujas puslapio vardas: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export to selected page" msgid "Export/Import to scale:" msgstr "Eksportuoti pasirinktą puslapį" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "rekomenduojame" @@ -10779,7 +10968,7 @@ msgstr "Vidinis sąryšis įdėtas" msgid "Relation deleted" msgstr "Sąryšis ištrintas" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11223,194 +11412,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitor instrukcijos" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Pridėti diagramą" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove chart" -msgid "Preset chart" -msgstr "Pašalinti diagramą" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Būsenos kintamasis(ieji)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Pasirinkite eiles:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "arba įveskite kintamojo vardą:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Pridėti šią eilę" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Eilės diagramoje:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Registruoti statistiką" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Pasirinktas laiko tarpas:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Užklausos analizatorius" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekundė" -msgstr[1] "Sekundės" -msgstr[2] "Sekundžių" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minutė" -msgstr[1] "Minutė" -msgstr[2] "Minučių" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Paleisti Monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrukcijos/Diegimas" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Įjungti paryškinimą" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Naujinimo dažnis" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Diagramos stulpeliai" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagramos išdėstymas" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Atstatyti numatytąsias reikšmes" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12396,47 +12397,37 @@ msgstr "" msgid "Wrong data" msgstr "Nėra duomenų" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Žymė %s sukurta" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Rodomas PHP kodas" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Patikrintas SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Iškilo problemos su `%s` lentelės indeksais" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Šios SQL užklausą pasižymėti kaip" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Nuorodos Antraštė" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data" @@ -12529,6 +12520,12 @@ msgstr "X Reikšmės" msgid "Y-Axis label:" msgstr "Y ašies etiketė:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Pradėti eilute" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12673,148 +12670,148 @@ msgstr "Pasirinkite laukus peržiūrai" msgid "No column selected." msgstr "Nepasirinkti įrašai" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Stebėjimas %s.%s yra aktyvuotas." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL užklausos įvykdytos." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Užkomentuokite (panaikinkite) šias dvi eilutes jeigu Jums jų nereikia." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Ištrinti sekimo duomenis iš ataskaitos" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nėra duomenų" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL vykdymas" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksportuoti kaip %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Rodyti versijas" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktyvuoti dabar" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Edit settings for %s" msgid "Activate tracking for %s" msgstr "Keisti nustatymus %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktyvuoti dabar" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Sukurti versiją" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Sukurti versiją" @@ -14049,6 +14046,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "MyISAM concurrent įterpimai" +#~ msgid "Headers every %s rows" +#~ msgstr "Antraštės kas %s eilučių" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/lv.po b/po/lv.po index 7c2c487a26..e7bb71d8bc 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:18+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Latvian %s" msgstr[1] "%s rezultāti tabulā %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Apskatīt" @@ -2544,14 +2545,14 @@ msgstr "Apskatīt" msgid "Delete the matches for the %s table?" msgstr "Dati tabulai" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Dzēst" @@ -2629,48 +2630,36 @@ msgctxt "Last page" msgid "End" msgstr "Beigas" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "S" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Rindu skaits vienā lapā" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "P" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontālā" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontālā (pagriezti virsraksti)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikālā" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izpildīt iegrāmatoto vaicājumu" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Kārtot pēc atslēgas" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2698,98 +2687,98 @@ msgstr "Kārtot pēc atslēgas" msgid "Options" msgstr "Darbības" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Daļēji teksti" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Pilni teksti" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Relāciju shēma" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Relāciju shēma" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Pārlūkprogrammas transformācija" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Ieraksts tika dzēsts" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Nogalināt" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Var būt aptuvens skaits. Skatīt [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "vaicājumā" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Parādu rindas" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "kopā" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Vaicājums ilga %01.4f s" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2798,8 +2787,8 @@ msgstr "Vaicājums ilga %01.4f s" msgid "With selected:" msgstr "Ar iezīmēto:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2810,48 +2799,48 @@ msgstr "Ar iezīmēto:" msgid "Check All" msgstr "Iezīmēt visu" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksports" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Izdrukas versija" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Drukas skats (ar pilniem tekstiem)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Rādīt PDF shēmu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Links nav atrasts" @@ -2929,38 +2918,38 @@ msgstr "Nav definēti indeksi!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikālais" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitāte" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Izkārtojumi" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Komentāri" @@ -2994,14 +2983,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktūra" @@ -3014,12 +3003,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Meklēt" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Pievienot" @@ -3153,16 +3142,16 @@ msgstr[1] "Rindas nav iezīmētas" msgid "Error while creating PDF:" msgstr "Ļauj lasīt datus." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Nav tabulu" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3411,7 +3400,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pārlūkot ārējās vērtības" @@ -3764,7 +3753,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimālais izmērs: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3825,7 +3814,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3866,50 +3855,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Direktoija, kuru norādijāt augšupielādei, nav pieejama" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Iztukšot" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Drukāt" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Izveidošana" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Pēdējā atjaunošana" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Pēdējā pārbaude" @@ -4032,60 +4021,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ielikt" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Tests" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Izslēgts" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Neaizvērtas pēdiņas" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4096,7 +4085,7 @@ msgstr "Neaizvērtas pēdiņas" msgid "structure" msgstr "Struktūra" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4106,7 +4095,7 @@ msgstr "Struktūra" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4118,35 +4107,35 @@ msgstr "" msgid "structure and data" msgstr "Struktūra un dati" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Pilnas INSERT izteiksmes" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Paplašinātas INSERT izteiksmes" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6198,8 +6187,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Lietotājvārds:" @@ -6617,7 +6606,7 @@ msgstr "Datubāzes" msgid "Table(s):" msgstr "Tabulas" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7210,7 +7199,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)." @@ -7334,11 +7323,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7395,7 +7384,7 @@ msgstr "Pievienot jaunu lauku" msgid "Add prefix" msgstr "Pievienot jaunu lauku" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7620,18 +7609,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Mainīt datu kārtošanas laukus" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7738,17 +7727,17 @@ msgid "Drop the database (DROP)" msgstr "Nav datubāzu" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tikai struktūra" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktūra un dati" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tikai dati" @@ -8210,7 +8199,7 @@ msgstr "Likt kolonnu nosaukumus pirmajā rindā" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8218,7 +8207,7 @@ msgstr "Hosts" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8236,7 +8225,7 @@ msgstr "PHP Versija" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9415,7 +9404,7 @@ msgstr "Atribūti" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstras" @@ -9590,7 +9579,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Persiešu" @@ -10077,68 +10066,283 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Izvēlētais lietotājs nav atrasts privilēģiju tabulā." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Jūs pievienojāt jaunu lietotāju." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundē" +msgstr[1] "sekundē" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "lietošanā" +msgstr[1] "lietošanā" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Rindas statistika" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Iezīmēt visu" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Vaicājuma tips" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Pievienot jaunu lauku" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Pārsaukt datubāzi par" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Izvēlieties tabulas" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Pievienot jaunu lietotāju" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL vaicājums" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "S" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Atjaunot" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Pievienot/Dzēst laukus (kolonnas)" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultāts" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Uzģenerēja" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Tikai dati" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Cits" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Statuss" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Kopējais laiks:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Laiks" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Aizvērt" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Laiks" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Saglabāt šo SQL vaicājumu" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Nosaukums" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10160,10 +10364,6 @@ msgstr "Kalendārs" msgid "Bookmark this SQL query:" msgstr "Saglabāt šo SQL vaicājumu" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10307,7 +10507,7 @@ msgstr "Iezīmēt tabulas ar pārtēriņu" msgid "Sort" msgstr "Kārtošana" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10478,7 +10678,7 @@ msgstr "Efektīvs" msgid "Table %1$s has been altered successfully" msgstr "Izvēlētie lietotāji tika veiksmīgi dzēsti." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10646,7 +10846,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Labojumi tika saglabāti" @@ -10704,7 +10904,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Tradicionāla ķīniešu" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10779,52 +10979,52 @@ msgstr "Izveidot" msgid "Active options" msgstr "Tabulas opcijas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabula %s tika izdzēsta" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Aizņem" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importēt failus" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Izveidot jaunu indeksu" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Lietotājvārds" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Rindas nav iezīmētas" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10854,7 +11054,7 @@ msgstr "Iekšējās relācijas" msgid "Relation deleted" msgstr "Relāciju pārskats" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11278,206 +11478,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Pievienot jaunu lauku" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Pārsaukt datubāzi par" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Izvēlieties tabulas" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Pievienot jaunu lietotāju" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL vaicājums" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Rindas statistika" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Iezīmēt visu" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Vaicājuma tips" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekundē" -msgstr[1] "sekundē" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "lietošanā" -msgstr[1] "lietošanā" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "S" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Atjaunot" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Pievienot/Dzēst laukus (kolonnas)" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12418,49 +12418,39 @@ msgstr "" msgid "Wrong data" msgstr "Nav datubāzu" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Grāmatzīme %s izveidota" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Pārbaudīt SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problēmas ar indeksiem tabulā `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Saglabāt šo SQL vaicājumu" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Nosaukums" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12551,6 +12541,12 @@ msgstr "Vērtība" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "S" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12701,148 +12697,148 @@ msgstr "Izvēlieties, kuru lauku rādīt" msgid "No column selected." msgstr "Rindas nav iezīmētas" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Ļauj ievietot un mainīt datus." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nav datubāzu" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Dati" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Servera versija" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Servera versija" @@ -14008,6 +14004,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izpildīt iegrāmatoto vaicājumu" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/mk.po b/po/mk.po index ad218d7be1..57b9fda08c 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-04-25 15:32+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Macedonian %s" msgstr[1] "%s погодоци во табелата %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Преглед" @@ -2651,14 +2652,14 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ на податоци од табелата" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "избриши" @@ -2737,48 +2738,36 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Саб" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Број на записи на страница" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Пон" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "хоризонтален" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "хоризонтален (ротирани заглавија)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вертикален" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Изврши запамтен упит" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Подредување по клуч" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2806,100 +2795,100 @@ msgstr "Подредување по клуч" msgid "Options" msgstr "Операции" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Дел на текстот" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Полн текст" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Релациона шема" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона шема" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформации на веб прелистувачот" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Записот е избришан" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Прекини" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" "Бројот на записи може да биде приближен. За подетални информации види " "[doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "во упитот" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Приказ на записи од" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "вкупно" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "време на извршување на упитот %01.4f секунди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2908,8 +2897,8 @@ msgstr "време на извршување на упитот %01.4f секун msgid "With selected:" msgstr "Обележаното:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2920,48 +2909,48 @@ msgstr "Обележаното:" msgid "Check All" msgstr "обележи ги сите" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Преглед за печатење" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Преглед за печатење (целосен текст)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF шема" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Врската не е пронајдена" @@ -3041,38 +3030,38 @@ msgstr "Клучот не е дефиниран!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Клучеви" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Единствен" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Подредување" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -3106,14 +3095,14 @@ msgstr "Поглед" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3126,12 +3115,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Пребарување" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Нов запис" @@ -3265,16 +3254,16 @@ msgstr[1] "Нема селектирани записи" msgid "Error while creating PDF:" msgstr "Дозволува читање на податоци." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Нема табела" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3524,7 +3513,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Прегледни ги надворешните вредности" @@ -3877,7 +3866,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимална големина: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3940,7 +3929,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складишта" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3981,50 +3970,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директориум за праќање на веб серверот " -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Директориумот кој го избравте за праќање не е достапен" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Испразни" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Печати" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Направено" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Последна измена" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Последна проверка" @@ -4148,60 +4137,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Следен" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Оневозможено" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Наводникот не е затворен" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4212,7 +4201,7 @@ msgstr "Наводникот не е затворен" msgid "structure" msgstr "Структура" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4222,7 +4211,7 @@ msgstr "Структура" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4234,35 +4223,35 @@ msgstr "" msgid "structure and data" msgstr "Структура и податоци" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Комплетен INSERT (со имиња на полињата)" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Проширен INSERT" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6324,8 +6313,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Корисничко име:" @@ -6743,7 +6732,7 @@ msgstr "База на податоци" msgid "Table(s):" msgstr "Табели" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7354,7 +7343,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL врати празен резултат (нула записи)." @@ -7480,11 +7469,11 @@ msgstr "" "Користете го TAB тастерот за движење од поле во поле, или CTRL+стрелка за " "слободно движење" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7541,7 +7530,7 @@ msgstr "Додади ново поле" msgid "Add prefix" msgstr "Додади ново поле" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7765,18 +7754,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Промени го редоследот во табелата" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7882,17 +7871,17 @@ msgid "Drop the database (DROP)" msgstr "Базата на податоци не постои" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Само структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структура и податоци" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Само податоци" @@ -8355,7 +8344,7 @@ msgstr "Стави ги имињата на полињата во првата #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8363,7 +8352,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8381,7 +8370,7 @@ msgstr "PHP верзија" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9581,7 +9570,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Дополнително" @@ -9756,7 +9745,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Персиски" @@ -10248,65 +10237,280 @@ msgstr "" "измени. Во тој случај %sповторно вчитајте ги привилегиите%s пред да " "продолжите со работа." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Изабраниот корисник не е пронајден во табелата на привилегии." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Додадовте нов корисник." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "во секунда" +msgstr[1] "во секунда" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Статистики за записите" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "избери се" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Вид на упит" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Додади ново поле" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Избриши ја базата на податоци." + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Избери табели" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Додади нов корисник" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL упит" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Саб" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Освежи" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Додади/избриши колона" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL резултат" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Генерирал" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Податотеки со податоци" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Статус" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Вкупно" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Запамти SQL упит" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Назив" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "дади дозвола на секој корисник да пристапува на овој упит" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10328,10 +10532,6 @@ msgstr "Календар" msgid "Bookmark this SQL query:" msgstr "Запамти SQL упит" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "дади дозвола на секој корисник да пристапува на овој упит" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10470,7 +10670,7 @@ msgstr "табели кои имаат пречекорувања" msgid "Sort" msgstr "Подредуваање" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10641,7 +10841,7 @@ msgstr "Ефективни" msgid "Table %1$s has been altered successfully" msgstr "Изабраните корисници успешно се избришани." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10810,7 +11010,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Измените се сочувани" @@ -10868,7 +11068,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Традиционален кинески" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10943,52 +11143,52 @@ msgstr "Креирај" msgid "Active options" msgstr "Опции на табелата" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Табелата %s е избришана" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "страница" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз на податотека" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Нема селектирани записи" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Креирај нов клуч" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Назив на корисник" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Нема селектирани записи" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -11018,7 +11218,7 @@ msgstr "Внатрешни релации" msgid "Relation deleted" msgstr "Релационен поглед" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11441,206 +11641,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Додади ново поле" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Избриши ја базата на податоци." - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Избери табели" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Додади нов корисник" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL упит" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Статистики за записите" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "избери се" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Вид на упит" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "во секунда" -msgstr[1] "во секунда" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "се користи" -msgstr[1] "се користи" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Саб" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Освежи" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Додади/избриши колона" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12582,47 +12582,37 @@ msgstr "" msgid "Wrong data" msgstr "Базата на податоци не постои" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирање на табелата `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Запамти SQL упит" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Назив" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12715,6 +12705,12 @@ msgstr "Вредност" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Саб" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12865,149 +12861,149 @@ msgstr "Избери полиња за прикажување" msgid "No column selected." msgstr "Нема селектирани записи" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозволува вметнување и замена на података." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Базата на податоци не постои" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Податоци" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Избришете го податоците за тракирање од табелава" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Верзија на серверот" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Верзија на серверот" @@ -14203,6 +14199,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Изврши запамтен упит" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ml.po b/po/ml.po index b7df539ab0..606454d0d8 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2011-09-27 08:42+0200\n" "Last-Translator: \n" "Language-Team: Malayalam \n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "തിരയൂ" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "തിരയൂ" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "പോകൂ" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "കീനാമം" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "വിവരണം" @@ -105,7 +105,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." @@ -135,7 +135,7 @@ msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "നിര" @@ -158,7 +158,7 @@ msgstr "നിര" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "തരം" @@ -175,7 +175,7 @@ msgstr "തരം" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "ശൂന്യം" @@ -190,7 +190,7 @@ msgstr "ശൂന്യം" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "സ്വതേ" @@ -232,9 +232,9 @@ msgstr "അഭിപ്രായങ്ങൾ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "ഇല്ല" @@ -259,9 +259,9 @@ msgstr "ഇല്ല" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "അതേ" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "പട്ടിക" @@ -395,7 +395,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -403,17 +403,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -426,7 +426,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "പ്രദർശിപ്പിക്കുക" @@ -435,18 +435,18 @@ msgid "Delete tracking data for this table" msgstr "" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -454,11 +454,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -643,7 +643,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -665,7 +665,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -847,7 +847,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -856,7 +856,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -940,8 +940,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1064,13 +1064,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1111,7 +1111,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1131,13 +1131,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1230,7 +1231,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1310,7 +1311,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1403,7 +1404,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1460,7 +1461,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1608,10 +1609,10 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1621,7 +1622,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1703,7 +1704,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1719,7 +1720,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2190,31 +2191,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ആരോഹണം" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2233,7 +2234,7 @@ msgstr "നിര" msgid "Sort:" msgstr "തരംതിരിക്കുക" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2356,8 +2357,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "" @@ -2366,14 +2367,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2435,43 +2436,32 @@ msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Sort" -msgid "Start row:" -msgstr "തരംതിരിക്കുക" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2498,89 +2488,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2589,8 +2579,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2601,45 +2591,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2714,38 +2704,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "നിബന്ധന" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2778,14 +2768,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2798,12 +2788,12 @@ msgstr "" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "തിരയൂ" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "" @@ -2930,15 +2920,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3176,7 +3166,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3516,7 +3506,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3575,7 +3565,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3614,49 +3604,49 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "അച്ചടിക്കുക" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "സൃഷ്ടി" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "അവസാനം നവീകരിച്ചത്" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "അന്തിമ പരിശോധന" @@ -3770,56 +3760,56 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "ചേര്ക്കുക" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3829,7 +3819,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3839,7 +3829,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3849,31 +3839,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5813,8 +5803,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6202,7 +6192,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6760,7 +6750,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6877,11 +6867,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6928,7 +6918,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7150,16 +7140,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7257,17 +7247,17 @@ msgid "Drop the database (DROP)" msgstr "വിവരശേഖരം ഉപേക്ഷിക്കുക (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "ഘടന മാത്രം" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ഘടനയും വിവരവും" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "വിവരം മാത്രം" @@ -7675,13 +7665,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7695,7 +7685,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database comment: " msgid "Database:" @@ -8727,7 +8717,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8888,7 +8878,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9333,54 +9323,247 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9399,10 +9582,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9528,7 +9707,7 @@ msgstr "" msgid "Sort" msgstr "തരംതിരിക്കുക" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9686,7 +9865,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9825,7 +10004,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9881,7 +10060,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9939,39 +10118,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9999,7 +10178,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10404,186 +10583,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11500,43 +11499,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11614,6 +11605,12 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Sort" +msgid "Start row:" +msgstr "തരംതിരിക്കുക" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11744,143 +11741,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/mn.po b/po/mn.po index d360b26eff..0b3d011971 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-04-25 15:34+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian %s-д" msgstr[1] "%s олдоц(ууд) хүснэгт %s-д" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Хөтлөх" @@ -2669,14 +2670,14 @@ msgstr "Хөтлөх" msgid "Delete the matches for the %s table?" msgstr "Хүснэгтийн өгөгдлийг устгах" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Устгах" @@ -2754,48 +2755,36 @@ msgctxt "Last page" msgid "End" msgstr "Төгс" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Showing rows" -msgid "Start row:" -msgstr "Мөрүүдийг харуулж байна " - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Талбаруудын тоо" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Да" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "хөндлөн" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "хөндлөн (эргүүлэгдсэн толгойнууд)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "босоо" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Түлхүүрээр эрэмбэлэх" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2822,97 +2811,97 @@ msgstr "Түлхүүрээр эрэмбэлэх" msgid "Options" msgstr "Сонголтууд" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Бичвэрийн зарим хэсэг" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Бүтэн бичвэр" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Хамааралтай схем" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Хөтчийн өөрчлөл" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Мөр устгагдсан" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Алах" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "асуултад" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Мөрүүдийг харуулж байна" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "Нийт" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Асуулт нь %01.4f сек авлаа" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2921,8 +2910,8 @@ msgstr "Асуулт нь %01.4f сек авлаа" msgid "With selected:" msgstr "Сонгогдсонтой:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2933,49 +2922,49 @@ msgstr "Сонгогдсонтой:" msgid "Check All" msgstr "Бүгдийг чагтлах" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Гаргах" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Асуудлын үр дүнгийн үйлдэл" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Хэвлэхээр харах" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Хэвлэхээр харах (бүх бичвэртэй нь)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схем харуулах" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Холбоос олдсонгүй" @@ -3052,38 +3041,38 @@ msgstr "Индекс тодорхойлогдоогүй!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индексүүд" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Үл давтагдах" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Ерөнхий" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Жишилт" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -3116,14 +3105,14 @@ msgstr "Харц" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Бүтэц" @@ -3136,12 +3125,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Хайх" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Оруулах" @@ -3274,19 +3263,19 @@ msgstr[1] "Сонгогдсон мөргүй" msgid "Error while creating PDF:" msgstr "Өгөгдөл уншихыг зөвшөөрөх." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Select Tables" msgid "Recent tables" msgstr "Хүснэгтүүд сонго" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3537,7 +3526,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3893,7 +3882,7 @@ msgstr "" msgid "Max: %s%s" msgstr "ХИ хэмжээ: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3956,7 +3945,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Хөдөлгүүрүүд" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3997,50 +3986,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "web-сервэр түлхэх хавтас" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Таны сонгосон хавтас \"upload\" хийгдэхгүй байна" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Хоосон" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Хэвлэх" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Үүсгэлт" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Сүүлийн шинэчлэл" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Сүүлийн шалгалт" @@ -4168,60 +4157,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Оруулах" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Цааш" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Хаагдсан" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Хаагдаагүй хашилт" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4231,7 +4220,7 @@ msgstr "Хаагдаагүй хашилт" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4241,7 +4230,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4253,35 +4242,35 @@ msgstr "" msgid "structure and data" msgstr "Бүтэц ба өгөгдөл" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Оруулалтыг дуусгах" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Өргөтгөсөн оруулалт" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6327,8 +6316,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6746,7 +6735,7 @@ msgstr "Өгөгдлийн сангууд" msgid "Table(s):" msgstr "Хүснэгт" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7374,7 +7363,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)." @@ -7500,11 +7489,11 @@ msgstr "" "TAB товчийг хэрэглэн утгаас утгын хооронд шилжинэ, эсвэл CTRL+сумууд-аар " "зөөгдөнө" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL асуудал харуулах" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7561,7 +7550,7 @@ msgstr "Шинэ талбар нэмэх" msgid "Add prefix" msgstr "Шинэ талбар нэмэх" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7785,18 +7774,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "хүснэгтийн нэр" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7904,17 +7893,17 @@ msgid "Drop the database (DROP)" msgstr "Өгөгдлийн сан хуулах нь" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Зөвхөн бүтэц" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Бүтэц ба өгөгдөл" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Зөвхөн өгөгдөл" @@ -8372,7 +8361,7 @@ msgstr "Эхний мөрт талбаруудын нэрийг тавих" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8380,7 +8369,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8398,7 +8387,7 @@ msgstr "PHP хувилбар" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9593,7 +9582,7 @@ msgstr "Атрибутууд" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Нэмэлт" @@ -9768,7 +9757,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -10244,66 +10233,283 @@ msgstr "" "агуулга нь сервэрт хэрэглэгдэж буйгаас өөр байна. Энэ тохиолдолд %sдахин " "дуудаж%s үргэлжлүүлнэ үү." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Сонгогдсон хэрэглэгч онцгой эрхийн хүснэгтэд алга байна." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Шинэ хэрэглэгч нэмэгдлээ." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундэд" +msgstr[1] "секундэд" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "хэрэглэгдэж байна" +msgstr[1] "хэрэглэгдэж байна" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Row Statistics" +msgid "Log statistics" +msgstr "Мөрийн статистик" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Бүгдийг сонгох" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Асуултын төрөл" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Мэдээлэл" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Шинэ талбар нэмэх" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Өгөгдлийн санг д.нэрлэх нь" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Хүснэгтүүд сонго" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Хүснэгтийн буруу нэр" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "Шинэ хэрэглэгч нэмэх" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Да.дуудах" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Багана нэмэх/устгах" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-үр дүн" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Үүсгэгч" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Өгөгдлийн файлууд" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "Бя" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Нийт" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Цаг" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Цаг" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Хаяг" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10324,10 +10530,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих" @@ -10459,7 +10661,7 @@ msgstr "Дээдхийг шалгах" msgid "Sort" msgstr "Эрэмбэлэх" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10631,7 +10833,7 @@ msgstr "Эффекттэй" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10802,7 +11004,7 @@ msgstr "ZIP архивт байгаа алдаа:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Өөрчлөлт хадгалагдав" @@ -10860,7 +11062,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Холбоо сонгохдоо, дарах нь :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Оруулах/Гаргах PDF схемийн координат" @@ -10936,51 +11138,51 @@ msgstr "Үүсгэх" msgid "Active options" msgstr "Хүснэгтийн сонголтууд" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "хуудсууд" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файл оруулах" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Шинэ индекс үүсгэх" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Хэрэглэгчийн нэр" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Гаргах/Оруулах хэмжээс" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "сайшаагдсан" @@ -11008,7 +11210,7 @@ msgstr "Дотоод холбоо нэмэгдэв" msgid "Relation deleted" msgstr "Холбоо устав" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11430,208 +11632,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Мэдээлэл" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Шинэ талбар нэмэх" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Өгөгдлийн санг д.нэрлэх нь" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Хүснэгтүүд сонго" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Хүснэгтийн буруу нэр" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "Шинэ хэрэглэгч нэмэх" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Row Statistics" -msgid "Log statistics" -msgstr "Мөрийн статистик" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Бүгдийг сонгох" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Асуултын төрөл" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "секундэд" -msgstr[1] "секундэд" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "хэрэглэгдэж байна" -msgstr[1] "хэрэглэгдэж байна" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Да.дуудах" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Багана нэмэх/устгах" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12619,49 +12619,39 @@ msgstr "" msgid "Wrong data" msgstr "ӨС байхгүй" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Тэмдэглэл %s нь үүсгэгдлээ" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP кодоор харуулах" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL-ийг батлах" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Хүснэгт `%s`-ийн индекс асуудалтай" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Энэ SQL-асуулт-ыг тэмдэглэх" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Хаяг" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12753,6 +12743,12 @@ msgstr "Утга" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Showing rows" +msgid "Start row:" +msgstr "Мөрүүдийг харуулж байна " + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12903,148 +12899,148 @@ msgstr "Харуулах талбарыг соль" msgid "No column selected." msgstr "Сонгогдсон мөргүй" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Өгөгдөл нэмэх, солихыг зөвшөөрөх." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "ӨС байхгүй" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Ерөнхий хамаатай онцлог" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" @@ -14277,6 +14273,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "ХИ. давхацсан холболтууд" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ms.po b/po/ms.po index a124fb69ea..191e7c50e5 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:19+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay \n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Cari" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,24 +72,24 @@ msgstr "Cari" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Pergi" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Nama Kekunci" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Keterangan" @@ -108,7 +108,7 @@ msgstr "" "Fail %s tidak ada di dalam sistem, sila ke laman sesawang www.phpmyadmin.net " "untuk maklumat lanjut." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Pengkalan data %1$s telah dijana." @@ -138,7 +138,7 @@ msgstr "Komen jadual" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy msgid "Column" msgstr "Pangkalan data %1$s telah dijana." @@ -162,7 +162,7 @@ msgstr "Pangkalan data %1$s telah dijana." #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Jenis" @@ -179,7 +179,7 @@ msgstr "Jenis" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -194,7 +194,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Asal" @@ -236,9 +236,9 @@ msgstr "Komen" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Tidak" @@ -263,9 +263,9 @@ msgstr "Tidak" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ya" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Jadual" @@ -399,7 +399,7 @@ msgstr "Jadual dikesan" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Pangkalan Data" @@ -407,17 +407,17 @@ msgstr "Pangkalan Data" msgid "Last version" msgstr "Versi terakhir" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Dibina" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "dikemaskini" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -430,7 +430,7 @@ msgstr "Status" msgid "Action" msgstr "Aksi" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Papar" @@ -440,18 +440,18 @@ msgid "Delete tracking data for this table" msgstr "Padam mengesan data untuk jadual ini" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Gugur" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "tidak aktif" @@ -459,11 +459,11 @@ msgstr "tidak aktif" msgid "Versions" msgstr "Versi" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Laporan penjejak" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Paparan struktur" @@ -667,7 +667,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -689,7 +689,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -899,7 +899,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "keterangan \"DROP DATABASE\" di tidak aktifkan ." @@ -909,7 +909,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1002,8 +1002,8 @@ msgstr "Tiada Privilej" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1137,13 +1137,13 @@ msgstr "Bytes" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1184,7 +1184,7 @@ msgid "Traffic" msgstr "Kesibukan" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1207,13 +1207,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Tiada" @@ -1313,7 +1314,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Current settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy msgid "Chart Title" msgstr "Tiada Jadual" @@ -1400,7 +1401,7 @@ msgstr "Terangkan Kod SQL" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Masa" @@ -1507,7 +1508,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 #, fuzzy msgid "Import" @@ -1571,7 +1572,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Local" @@ -1748,10 +1749,10 @@ msgstr "kueri-SQL" msgid "Show query box" msgstr "kueri-SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1761,7 +1762,7 @@ msgstr "Ubah" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1853,7 +1854,7 @@ msgstr "Kandungan" msgid "Ignore" msgstr "Abai" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1869,7 +1870,7 @@ msgstr "Rentetan talian" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometri" @@ -2412,31 +2413,31 @@ msgstr "per jam" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Menaik" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2455,7 +2456,7 @@ msgstr "Pangkalan data %1$s telah dijana." msgid "Sort:" msgstr "Isih" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2578,8 +2579,8 @@ msgstr[0] "%s padanan di dalam jadual %s" msgstr[1] "%s padanan di dalam jadual %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Lungsur" @@ -2588,14 +2589,14 @@ msgstr "Lungsur" msgid "Delete the matches for the %s table?" msgstr "Padam padanan untuk jadual %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Padam" @@ -2667,47 +2668,36 @@ msgctxt "Last page" msgid "End" msgstr "Tamat" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Sab" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Bilangan baris per halaman" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Isn" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "mengufuk" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "menegak" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2735,97 +2725,97 @@ msgstr "" msgid "Options" msgstr "Operasi" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Sebahagian Teks" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Teks Penuh" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Skema Hubungan" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema Hubungan" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy msgid "Hide browser transformation" msgstr "Informasi MasaJana" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Baris telah dipadam" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Bunuh" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "pada kueri" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Papar baris" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "jumlah" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2834,8 +2824,8 @@ msgstr "" msgid "With selected:" msgstr "Dengan pilihan:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2846,48 +2836,48 @@ msgstr "Dengan pilihan:" msgid "Check All" msgstr "Tanda Semua" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Paparan Cetak" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Papar Skema PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Pautan tidak dijumpai" @@ -2964,38 +2954,38 @@ msgstr "Tiada indeks ditafrifkan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeks" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinaliti" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Pengumpulan" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Komen" @@ -3029,14 +3019,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -3049,12 +3039,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Cari" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Selit" @@ -3184,16 +3174,16 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Tiada Jadual" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3444,7 +3434,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3796,7 +3786,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3857,7 +3847,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3896,50 +3886,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "direktori muatnaik pelayan-web" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Direktori muatnaik yang telah ditetapkan tidak dapat dicapai" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Kosong" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Cetak" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Mewujudkan" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Kemaskini terakhir" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Semakan Terakhir" @@ -4061,60 +4051,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Berikut" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Tidak Membenarkan" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Tanda quote tidak disertakan" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4125,7 +4115,7 @@ msgstr "Tanda quote tidak disertakan" msgid "structure" msgstr "Struktur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4135,7 +4125,7 @@ msgstr "Struktur" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4147,35 +4137,35 @@ msgstr "" msgid "structure and data" msgstr "Struktur dan data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Kemasukkan Selesai" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Penyelitan Lanjutan" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6201,8 +6191,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Namapengguna:" @@ -6619,7 +6609,7 @@ msgstr "pangkalan data" msgid "Table(s):" msgstr "Jadual-jadual" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7204,7 +7194,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)." @@ -7327,11 +7317,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7386,7 +7376,7 @@ msgstr "Ganti data jadual dengan fail" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7610,18 +7600,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Alter table order by" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7725,17 +7715,17 @@ msgid "Drop the database (DROP)" msgstr "Menggugurkan pangkalan data" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Struktur sahaja" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur dan data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Data sahaja" @@ -8177,7 +8167,7 @@ msgstr "Letakkan medan di baris pertama" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8185,7 +8175,7 @@ msgstr "Hos" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8203,7 +8193,7 @@ msgstr "Versi PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9306,7 +9296,7 @@ msgstr "Atribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9477,7 +9467,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Versi PHP" @@ -9938,64 +9928,277 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Anda telah menambah pengguna baru." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Records" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Rekod" +msgstr[1] "Rekod" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "sedang digunakan" +msgstr[1] "sedang digunakan" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistik Baris" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Sila pilih pangkalan data" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Jenis Kueri" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Tambah medan baru" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +msgid "Preset chart" +msgstr "Tukarnama jadual ke" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Pilih Jadual" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Tambah Pengguna Baru" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "kueri-SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sab" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Dijana oleh" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Tambah/Padam Kolum Medan" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Hasil SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Dijana oleh" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Data sahaja" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Status" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Jumlah" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Masa" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Masa" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "andabuku kueri-SQL ini" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Label" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10016,10 +10219,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "andabuku kueri-SQL ini" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10163,7 +10362,7 @@ msgstr "" msgid "Sort" msgstr "Isih" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10330,7 +10529,7 @@ msgstr "Berkesan" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10495,7 +10694,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Pengubahsuaian telah disimpan" @@ -10551,7 +10750,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10625,46 +10824,46 @@ msgstr "Cipta" msgid "Active options" msgstr "Aksi" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Jadual %s telah digugurkan" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Penggunaan" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Cipta indeks baru" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Kata Pengenalan" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10694,7 +10893,7 @@ msgstr "Ciri-ciri hubungan am" msgid "Relation deleted" msgstr "Paparan Hubungan" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11115,204 +11314,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Tambah medan baru" - -#: server_status_monitor.php:519 -#, fuzzy -msgid "Preset chart" -msgstr "Tukarnama jadual ke" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Pilih Jadual" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Tambah Pengguna Baru" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "kueri-SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistik Baris" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Sila pilih pangkalan data" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Jenis Kueri" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Records" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Rekod" -msgstr[1] "Rekod" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "sedang digunakan" -msgstr[1] "sedang digunakan" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sab" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Dijana oleh" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Tambah/Padam Kolum Medan" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12251,47 +12252,37 @@ msgstr "" msgid "Wrong data" msgstr "Tiada pangkalan data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Mengesahkan SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "andabuku kueri-SQL ini" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Label" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12381,6 +12372,12 @@ msgstr "Nilai" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Sab" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12528,146 +12525,146 @@ msgstr "Pilih Medan untuk dipapar" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Tiada pangkalan data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versi Pelayan" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Versi Pelayan" diff --git a/po/nb.po b/po/nb.po index 073870f2ab..3cdbec2592 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-03-26 11:59+0200\n" "Last-Translator: Stian Berg \n" "Language-Team: Norwegian Bokmål %2$s" msgstr[1] "%1$s treff i %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Se på" @@ -2476,14 +2477,14 @@ msgstr "Se på" msgid "Delete the matches for the %s table?" msgstr "Slett treffene for %s tabellen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Slett" @@ -2545,45 +2546,34 @@ msgctxt "Last page" msgid "End" msgstr "Siste" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Startrad" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Antall rader:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Modus" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vannrett" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horisontal (roterte overskrifter)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "loddrett" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Topptekst hver %s. rad" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sorter etter nøkkel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2610,93 +2600,93 @@ msgstr "Sorter etter nøkkel" msgid "Options" msgstr "Innstillinger" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Delvise tekster" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Hele strenger" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relasjonsnøkkel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relasjonsvisningskolonne" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Vis binært innhold" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Vis BLOB innhold" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Vis binært innhold som HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Skjul nettlesertransformasjon" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Velkjent Tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Velkjent Binær" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Raden er slettet" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Avslutt" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kan være unøyaktig. Se [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "i spørring" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, 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." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Viser rader" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Spørring tok %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2705,8 +2695,8 @@ msgstr "Spørring tok %01.4f sek" msgid "With selected:" msgstr "Med avkrysset:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2717,45 +2707,45 @@ msgstr "Med avkrysset:" msgid "Check All" msgstr "Merk alle" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporter" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Opprett view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Spørringsresultatshandlinger" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Utskriftsvennlig forhåndsvisning" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Forhåndsvisning (med all tekst)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Vis diagram" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualiser GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link ikke funnet" @@ -2836,38 +2826,38 @@ msgstr "Ingen indeks definert!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indekser" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakket" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Sammenligning" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2902,14 +2892,14 @@ msgstr "Vis" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2922,12 +2912,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Søk" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Sett inn" @@ -3054,15 +3044,15 @@ msgstr[1] "%1$d rader innsatt." msgid "Error while creating PDF:" msgstr "Feil oppstod under oppretting av PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Kunne ikke lagre tabell" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tidligere tabeller" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Det er ikke noen nylig brukte tabeller" @@ -3310,7 +3300,7 @@ msgid "Maximum rows to plot" msgstr "Maks antall rader som kan framvises" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Se de eksterne verdiene" @@ -3659,7 +3649,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimum størrelse: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3720,7 +3710,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Innebygd" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilering" @@ -3759,49 +3749,49 @@ msgstr "Funksjonaliteten %s er påvirket av en kjent feil, se %s" msgid "Click to toggle" msgstr "Klikk for å endre" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Bla gjennom datamaskinen:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Merk fra opplastingskatalogen på vevtjeneren %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen du anga for opplasting kan ikke nåes" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Det er ingen filer å laste opp" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Tøm" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Utfør" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Skriv ut" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Opprettet" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Sist oppdatert" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Sist kontrollert" @@ -3920,58 +3910,58 @@ msgstr "mulig sikkerhetshull" msgid "numeric key detected" msgstr "numerisk nøkkel oppdaget" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Sett inn" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Test" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Begge" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Ingensteds" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Venstre" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Høyre" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Avslått" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Åpne" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Lukket" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3981,7 +3971,7 @@ msgstr "Lukket" msgid "structure" msgstr "struktur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3991,7 +3981,7 @@ msgstr "struktur" msgid "data" msgstr "data" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4001,31 +3991,31 @@ msgstr "data" msgid "structure and data" msgstr "struktur og data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Hurtig - vis minimalt med konfigureringer" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Bruker - vis alle konfigureringer" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Bruker - som ovenfor, men uten hurtigoppsett" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "Komplette inserts" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "Utvidete innlegg" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "begge ovenforstående" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ingen av de overstående" @@ -6221,8 +6211,8 @@ msgstr "" "Hvis du har et egendefinert brukernavn, angi det her (standard: " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Brukernavn" @@ -6639,7 +6629,7 @@ msgstr "Database(r):" msgid "Table(s):" msgstr "Tabell(er):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rader:" @@ -7279,7 +7269,7 @@ msgid "No data found for GIS visualization." msgstr "Ingen data funnet for graf." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)." @@ -7414,11 +7404,11 @@ msgstr "" "Bruk TAB tasten for å flytte fra verdi til verdi, eller CTRL+piltastene for " "å bevege deg hvor som helst" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Viser SQL spørring" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Insatt rad id: %1$d" @@ -7473,7 +7463,7 @@ msgstr "Utfør indeks(er)" msgid "Add prefix" msgstr "Utfør indeks(er)" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7697,18 +7687,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Endre tabellrekkefølge ved" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7808,17 +7798,17 @@ msgid "Drop the database (DROP)" msgstr "Drop databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Kun struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur og data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Bare data" @@ -8263,7 +8253,7 @@ msgstr "Sett inn kolonnenavn i første rad" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8271,7 +8261,7 @@ msgstr "Vert" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8289,7 +8279,7 @@ msgstr "PHP-Versjon" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9511,7 +9501,7 @@ msgstr "Attributter" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9680,7 +9670,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versjon" @@ -10154,70 +10144,299 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Den valgte brukeren ble ikke funnet i privilegietabellen." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Du har lagt til en ny bruker." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "Sekund" +msgstr[1] "Sekund" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "Minutt" +msgstr[1] "Minutt" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Vis statistikk" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select page" +msgid "Selected time range:" +msgstr "Velg side" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Spørringstype" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +msgid "Monitor Instructions" +msgstr "Informasjon" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Utfør indeks(er)" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Fjern database" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Se slavestatustabell" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Velg tabeller" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Ugylding tabellnavn" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Legg til en ny tjener" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL spørringer" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "CHAR textarea rows" +msgid "Start Monitor" +msgstr "CHAR textarea rader" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Aktiver utheving" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Oppdater" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR textarea kolonner" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Feilbehandling:" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Gjennopprett standard verdi" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generert av" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Datafil vekststørrelse" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Annet" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Oppstart" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total tid:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tid" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Lukk" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tid" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Lagre denne SQL-spørringen" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Navn" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "La alle brukere ha adgang til dette bokmerket" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10238,10 +10457,6 @@ msgstr "Fjern" msgid "Bookmark this SQL query:" msgstr "Lagre denne SQL-spørringen" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "La alle brukere ha adgang til dette bokmerket" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Erstatt eksisterende bokmerke med samme navn" @@ -10382,7 +10597,7 @@ msgstr "Merk overheng" msgid "Sort" msgstr "Sorter" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ingen" @@ -10546,7 +10761,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har blitt endret" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -10709,7 +10924,7 @@ msgstr "Feil i ZIP arkivet:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Endringene er lagret" @@ -10767,7 +10982,7 @@ msgstr "Veksle mellom liten/stor" msgid "Toggle relation lines" msgstr "For å velge relasjon, klikk :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importer/Eksporter koordinater for PDF skjema" @@ -10843,51 +11058,51 @@ msgstr "Opprett" msgid "Active options" msgstr "Tabellinnstillinger" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Siden har blitt opprettet" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sideopprettelsen feilet" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "sider" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importer filer" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Lag en ny indeks" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Brukernavn" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Eksporter/Importer til skala" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "anbefalt" @@ -10917,7 +11132,7 @@ msgstr "Intern relasjon lagt til" msgid "Relation deleted" msgstr "Relasjon slettet" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Feil oppstod under lagring av Designerkoordinater." @@ -11373,220 +11588,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "Informasjon" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Utfør indeks(er)" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Fjern database" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Se slavestatustabell" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Velg tabeller" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Ugylding tabellnavn" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Legg til en ny tjener" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL spørringer" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Vis statistikk" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select page" -msgid "Selected time range:" -msgstr "Velg side" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Spørringstype" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "Sekund" -msgstr[1] "Sekund" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "Minutt" -msgstr[1] "Minutt" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "CHAR textarea rows" -msgid "Start Monitor" -msgstr "CHAR textarea rader" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Aktiver utheving" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Oppdater" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR textarea kolonner" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Feilbehandling:" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Gjennopprett standard verdi" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12741,47 +12742,37 @@ msgstr "Nøkkelen bør inneholde tall, bokstaver [em]og[/em] spesielle tegn" msgid "Wrong data" msgstr "Ingen databaser" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Bokmerke %s opprettet" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Viser som PHP kode" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validert SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemer med indeksene i tabellen `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Lagre denne SQL-spørringen" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Navn" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12877,6 +12868,12 @@ msgstr "Verdi" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Startrad" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13033,34 +13030,34 @@ msgstr "Velg kolonne for visning" msgid "No column selected." msgstr "Ingen rader valgt" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Overvåkningsrapport for tabell `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versjon %s er opprettet, overvåking av %s.%s er aktivert." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Overvåkning av %s.%s er aktivert." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL spørringer utført." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13068,125 +13065,125 @@ msgstr "" "Du kan utføre dumpen ved å opprette og bruke en midlertidig database. " "Kontroller at du har privilegiene til å gjøre så." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kommenter ut disse to linjene hvis du ikke trenger dem." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL spørringer eksportert. Venligst kopier dumpen eller utfør den." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versjon %s øyeblikksbilde (SQL kode)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Overvåkingsspørringer" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Vis %s med datoer fra %s til %s fra bruker %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Slett overvåkningsdata for denne tabellen" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ingen databaser" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dato" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Datadefinisjonsuttrykk" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Datamanipulasjonsuttrykk" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dump (filnedlasting)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Dette valget vil erstatte din tabell og dataene den inneholder." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL utførelse" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksporter som %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Vis versjoner" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "Deaktiver overvåkning av %s.%s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktiver nå" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "Aktiver overvåkning av %s.%s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiver nå" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "Opprett versjon %s av %s.%s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Spor disse datadefinisjonsspørringene:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Spor disse datamanipulasjonsspørringene:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Opprett versjon" @@ -14441,6 +14438,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "maks. samtidige tilkoblinger" +#~ msgid "Headers every %s rows" +#~ msgstr "Topptekst hver %s. rad" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/nl.po b/po/nl.po index 9c72fa8e5e..79352915b4 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,8 +3,8 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-06-12 14:52+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" +"PO-Revision-Date: 2013-06-20 14:25+0200\n" "Last-Translator: Dieter Adriaenssens \n" "Language-Team: Dutch \n" "Language: nl\n" @@ -43,7 +43,7 @@ msgid "Search:" msgstr "Zoeken:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -69,24 +69,24 @@ msgstr "Zoeken:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Start" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Sleutelnaam" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Beschrijving" @@ -105,7 +105,7 @@ msgstr "" "Het bestand %s is niet beschikbaar op dit systeem, gelieve www.phpmyadmin." "net te bezoeken voor meer informatie." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Databank %1$s werd aangemaakt." @@ -133,7 +133,7 @@ msgstr "Tabelopmerkingen:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Kolom" @@ -156,7 +156,7 @@ msgstr "Kolom" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Type" @@ -173,7 +173,7 @@ msgstr "Type" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Leeg" @@ -188,7 +188,7 @@ msgstr "Leeg" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Standaardwaarde" @@ -230,9 +230,9 @@ msgstr "Opmerkingen" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Nee" @@ -257,9 +257,9 @@ msgstr "Nee" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ja" @@ -311,7 +311,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabel" @@ -387,7 +387,7 @@ msgstr "Tabellen met tracker" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Databank" @@ -395,17 +395,17 @@ msgstr "Databank" msgid "Last version" msgstr "Laatste versie" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Aangemaakt" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Bijgewerkt" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Status" @@ -418,7 +418,7 @@ msgstr "Status" msgid "Action" msgstr "Actie" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Toon" @@ -427,18 +427,18 @@ msgid "Delete tracking data for this table" msgstr "Verwijder tracking data voor deze tabel" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Verwijderen" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ingeschakeld" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "niet actief" @@ -446,11 +446,11 @@ msgstr "niet actief" msgid "Versions" msgstr "Versies" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Tracking-rapport" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Structuur-snapshot" @@ -655,7 +655,7 @@ msgstr "" "De plugins voor het importeren konden niet worden geladen, controleer uw " "installatie!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Bladwijzer %s aangemaakt" @@ -682,7 +682,7 @@ msgstr "" "dit dat phpMyAdmin dit niet af kan maken tenzij de tijdsbeperkingen van PHP " "worden versoepeld." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -892,7 +892,7 @@ msgid "" msgstr "" "De server gebruikt Suhosin. Zie de %sdocumentatie%s voor mogelijke problemen." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." @@ -901,7 +901,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "U staat op het punt een volledige databank te VERWIJDEREN!" @@ -985,8 +985,8 @@ msgstr "Rechten worden herladen" msgid "Removing Selected Users" msgstr "Geselecteerde gebruikers worden verwijderd" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Sluiten" @@ -1114,13 +1114,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1159,7 +1159,7 @@ msgid "Traffic" msgstr "Verkeer" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Instellingen" @@ -1179,13 +1179,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Geen" @@ -1285,7 +1286,7 @@ msgstr "Instellingen wijzigen" msgid "Current settings" msgstr "Huidige instellingen" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Grafiektitel" @@ -1373,7 +1374,7 @@ msgstr "Verklaar resultaat" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Tijd" @@ -1473,7 +1474,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Importeren" @@ -1530,7 +1531,7 @@ msgid "Cancel" msgstr "Annuleren" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Laden" @@ -1681,10 +1682,10 @@ msgstr "SQL-queryveld verbergen" msgid "Show query box" msgstr "SQL-queryveld tonen" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1694,7 +1695,7 @@ msgstr "Wijzigen" msgid "No rows selected" msgstr "Geen rijen geselecteerd" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1780,7 +1781,7 @@ msgstr "Inhoud gegevenspunt" msgid "Ignore" msgstr "Negeren" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopiëren" @@ -1796,7 +1797,7 @@ msgstr "Lijnstuk definitie" msgid "Polygon" msgstr "Polygoon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometrie" @@ -2282,33 +2283,33 @@ msgstr "per uur" msgid "per day" msgstr "per dag" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Het bestaande configuratiebestand (%s) is niet leesbaar." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Verkeerde rechten ingesteld op het configuratiebestand, dit mag niet " "leesbaar zijn voor iedereen!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Lettertypegrootte" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Oplopend" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2323,7 +2324,7 @@ msgstr "Kolom:" msgid "Sort:" msgstr "Sorteren:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Toon:" @@ -2439,8 +2440,8 @@ msgstr[0] "%1$s overeenkomst in %2$s" msgstr[1] "%1$s overeenkomsten in %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Verkennen" @@ -2449,14 +2450,14 @@ msgstr "Verkennen" msgid "Delete the matches for the %s table?" msgstr "Verwijder gevonden rijen voor de tabel %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Verwijderen" @@ -2518,41 +2519,32 @@ msgctxt "Last page" msgid "End" msgstr "Einde" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Startregel:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Aantal rijen:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Modus:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontale" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontale (omgedraaide headers)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "verticale" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Hoofdingen iedere %s regels" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sorteren op sleutel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2579,68 +2571,68 @@ msgstr "Sorteren op sleutel" msgid "Options" msgstr "Opties" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Gedeeltelijke teksten" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Volledige teksten" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relationele sleutel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relationele weergave-kolom" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Toon binaire inhoud" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Toon BLOB-inhoud" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Toon binaire-inhoud als HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Browsertransformaties verbergen" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Goed bekende tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Goed gekende binaire waarde" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "De regel werd verwijderd" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "stop proces" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Bij benadering. Zie [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "in de query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2648,21 +2640,21 @@ msgid "" msgstr "" "Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Weergave van records" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "totaal" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "query duurde %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2671,8 +2663,8 @@ msgstr "query duurde %01.4f sec" msgid "With selected:" msgstr "Met geselecteerd:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2683,45 +2675,45 @@ msgstr "Met geselecteerd:" msgid "Check All" msgstr "Selecteer alles" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exporteren" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "VIEW aanmaken" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Handelingen voor queryresultaat" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Afdrukken" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Afdrukken (met volledige teksten)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Grafiek weergeven" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "GIS-gegevens visualiseren" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link niet gevonden" @@ -2802,38 +2794,38 @@ msgstr "Geen index gedefinieerd!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexen" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unieke waarde" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Gecomprimeerd" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinaliteit" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Collatie" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Opmerking" @@ -2868,14 +2860,14 @@ msgstr "View" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structuur" @@ -2888,12 +2880,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Zoeken" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Invoegen" @@ -3020,15 +3012,15 @@ msgstr[1] "%1$d rijen toegevoegd." msgid "Error while creating PDF:" msgstr "Fout bij het aanmaken van de PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Recente tabel kon niet opgeslagen worden" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Recente tabellen" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Er zijn geen recente tabellen" @@ -3270,7 +3262,7 @@ msgid "Maximum rows to plot" msgstr "Maximum aantal af te drukken regels" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Bekijk vreemde waarden" @@ -3682,7 +3674,7 @@ msgstr "Een opsomming, gekozen uit de lijst van gedefiniëerde waarden" msgid "Max: %s%s" msgstr "Maximale grootte: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL-query:" @@ -3743,7 +3735,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Rechtstreeks" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiling" @@ -3782,49 +3774,49 @@ msgstr "De %s functionaliteit heeft last van een bekend probleem, zie %s" msgid "Click to toggle" msgstr "Klik om te wisselen" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Blader op uw eigen pc:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecteer uit de web-server upload directory %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Er zijn geen bestanden om te uploaden" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Legen" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Uitvoeren" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Afdrukken" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Gecreëerd" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Laatst bijgewerkt" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Laatst gecontroleerd" @@ -3943,54 +3935,54 @@ msgstr "mogelijk misbruik" msgid "numeric key detected" msgstr "numerieke toets gedetecteerd" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Pictogrammen" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Tekst" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Beide" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nergens" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Links" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Rechts" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klik" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dubbelklik" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Uitgeschakeld" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Geopend" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Gesloten" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4000,7 +3992,7 @@ msgstr "Gesloten" msgid "structure" msgstr "structuur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4010,7 +4002,7 @@ msgstr "structuur" msgid "data" msgstr "gegevens" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4020,31 +4012,31 @@ msgstr "gegevens" msgid "structure and data" msgstr "Structuur en gegevens" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Snel - toon enkel de belangrijkste opties" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Uitgebreid - toon alle mogelijke opties" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Uitgebreid - zoals bovenstaande maar zonder keuze snel/uitgebreid" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "volledige invoegingen" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "uitgebreide invoegingen" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "beide bovenstaande opties" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "geen van bovenstaande opties" @@ -4136,7 +4128,7 @@ msgstr "Gebruikers toestaan deze waarde aan te passen" #: libraries/config/FormDisplay.tpl.php:392 msgid "Apply" -msgstr "" +msgstr "Toepassen" #: libraries/config/FormDisplay.tpl.php:394 libraries/insert_edit.lib.php:1551 #: libraries/schema/User_Schema.class.php:554 prefs_manage.php:326 @@ -6174,8 +6166,8 @@ msgid "" msgstr "" "Geef eventueel aangepaste gebruikersnaam op (standaard [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Gebruikersnaam" @@ -6348,19 +6340,19 @@ msgstr "ZIP" #: libraries/config/messages.inc.php:531 msgid "Enter your public key for your domain reCaptcha service" -msgstr "" +msgstr "Voer uw openbare sleutel in voor uw domein reCaptcha service" #: libraries/config/messages.inc.php:532 msgid "Public key for reCaptcha" -msgstr "" +msgstr "Openbare sleutel voor reCaptcha" #: libraries/config/messages.inc.php:533 msgid "Enter your private key for your domain reCaptcha service" -msgstr "" +msgstr "Voer uw private sleutel in voor uw domein reCaptcha service" #: libraries/config/messages.inc.php:534 msgid "Private key for reCaptcha" -msgstr "" +msgstr "Private sleutel voor reCaptcha" #: libraries/config/setup.forms.php:41 msgid "Config authentication" @@ -6595,7 +6587,7 @@ msgstr "Databank(en):" msgid "Table(s):" msgstr "Tabel(len):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rijen:" @@ -7227,7 +7219,7 @@ msgid "No data found for GIS visualization." msgstr "Geen gegevens beschikbaar voor GIS-visualisatie." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL gaf een lege resultatenset terug (0 rijen)." @@ -7346,11 +7338,11 @@ msgstr "" "Gebruik de TAB-toets om van waarde naar waarde te navigeren of CTRL+pijltjes " "om vrijuit te navigeren" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Toont SQL-query" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Toegevoegd rijnummer: %1$d" @@ -7396,7 +7388,7 @@ msgstr "Tabelvoorvoegsel toevoegen:" msgid "Add prefix" msgstr "Voorvoegsel toevoegen" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Weet u zeker dat u de volgende SQL-query wil uitvoeren?" @@ -7619,16 +7611,16 @@ msgid_plural "%s other results found" msgstr[0] "%s ander resultaat gevonden" msgstr[1] "%s andere resultaten gevonden" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "databanken filteren op naam" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Snelle filter leegmaken" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "elementen filteren op naam" @@ -7725,17 +7717,17 @@ msgid "Drop the database (DROP)" msgstr "Verwijder de databank (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Alleen structuur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structuur en gegevens" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Alleen gegevens" @@ -7948,11 +7940,11 @@ msgstr "Serverkeuze:" #: libraries/plugins/auth/AuthenticationCookie.class.php:386 msgid "Entered captcha is wrong, try again!" -msgstr "" +msgstr "Invoer is verkeerd, probeer opnieuw!" #: libraries/plugins/auth/AuthenticationCookie.class.php:395 msgid "Please enter correct captcha!" -msgstr "" +msgstr "Gelieve een correcte captcha in te voeren!" #: libraries/plugins/auth/AuthenticationCookie.class.php:657 #: libraries/plugins/auth/AuthenticationSignon.class.php:249 @@ -8149,13 +8141,13 @@ msgstr "Kolomnamen in de eerste regel plaatsen:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Machine:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Gegenereerd op:" @@ -8169,7 +8161,7 @@ msgstr "PHP-versie:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Databank:" @@ -8444,7 +8436,6 @@ msgstr "" "probeer opnieuw." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Kon OpenDocument-rekenblad niet inlezen!" @@ -9305,7 +9296,7 @@ msgstr "Attributen" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9468,7 +9459,7 @@ msgid "Library" msgstr "Bibliotheek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versie" @@ -9946,54 +9937,276 @@ msgstr "" "geval zijn dan moet men %sde rechtentabel vernieuwen%s voordat men verder " "gaat." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "De geselecteerde gebruiker werd niet aangetroffen in de rechtentabel." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "U heeft een nieuwe gebruiker toegevoegd." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d seconde" +msgstr[1] "%d seconden" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuut" +msgstr[1] "%d minuten" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logstatistieken" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Geselecteerde tijdspanne:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" +"Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " +"groeperen" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Kies het logbestand waarvan u de statistieken wil genereren." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Query-analyser" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Bewakingsinstructies" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"De phpMyAdmin-monitor kan u helpen bij het optimaliseren van de " +"serverconfiguratie en het opsporen van tijdrovende SQL-queries. Voor dit " +"laatste moet u de log_output-configuratieparameter instellen op 'TABLE' en " +"ofwel slow_query_log, ofwel general_log geactiveerd hebben. Merk echter op " +"dat general_log veel gegevens genereert en dat de belasting van de server " +"tot 15% kan stijgen." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Helaas ondersteunt uw databankserver het loggen naar een tabel niet. Dit is " +"een vereiste om de databanklogboeken te kunnen analyseren met phpMyAdmin. " +"Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " +"grafiekfunctionaliteit gebruiken." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Gebruik van de monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Uw browser zal alle weergegeven grafieken verversen na een vast interval. U " +"kan grafieken toevoegen en de ververssnelheid aanpassen onder " +"'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " +"bij iedere grafiek." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Om queries te tonen uit de logboeken, selecteer de relevante periode in een " +"willekeurige grafiek door de linkermuisknop in te drukken en over de grafiek " +"te slepen. Na het bevestiging wordt een tabel met gegroepeerde queries " +"geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " +"te analyseren." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Hou rekening met:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Het inschakelen van de general_log kan de serverbelasting verhogen met " +"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de " +"logboeken een belastende taak is, daarom is het aan te raden om alleen een " +"kleine periode te selecteren, en de general_log uit te schakelen en de tabel " +"te legen zodra het monitoren niet meer nodig is." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Een grafiek toevoegen" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Grafiek instellen" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Statusvariabele(n)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Selecteer series:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Algemeen bewaakt" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "of geef variabelenaam op:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Verschil weergeven" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Een scheiding toepassen" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Eenheid toevoegen aan gegevenswaarden" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Deze serie toevoegen" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Reeks leegmaken" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Series in grafiek:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Start bewaking" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instructies/Setup" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Klaar met slepen (herschikken) van de grafieken" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Grafieken verslepen ingeschakeld" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Vernieuwingsfrequentie" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Grafiekkolommen" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Grafiekschikking" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"De volgorde van de grafieken wordt opgeslagen in de lokale opslag van uw " +"browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " +"heeft." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Standaardwaarde herstellen" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultaat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Gegenereerd door:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Gedetailleerd profiel" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Volgorde" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Toestand" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Samenvatting per toestand" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Totale tijd" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Tijd" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Oproepen" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "Gemiddelde tijd" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Deze SQL-query opslaan" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Label:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Elke gebruiker toegang geven tot deze bladwijzer" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10012,10 +10225,6 @@ msgstr "Leegmaken" msgid "Bookmark this SQL query:" msgstr "Deze SQL-query onthouden:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Elke gebruiker toegang geven tot deze bladwijzer" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Bladwijzer met dezelfde naam overschrijven" @@ -10156,7 +10365,7 @@ msgstr "Selecteer tabellen met overhead" msgid "Sort" msgstr "Sorteren" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Geen" @@ -10310,7 +10519,7 @@ msgstr "Effectief" msgid "Table %1$s has been altered successfully" msgstr "Tabel %1$s is bijgewerkt" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Fout in query" @@ -10462,7 +10671,7 @@ msgstr "Fout in het ZIP-archief:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Fatale fout: de navigatie is alleen toegankelijk via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" @@ -10518,7 +10727,7 @@ msgstr "Wissel klein/groot" msgid "Toggle relation lines" msgstr "Relatielijnen wisselen" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Coördinaten voor PDF-schema importeren/exporteren" @@ -10579,39 +10788,39 @@ msgstr "Actieve opties" # Verleden tijd: "is aangemaakt" => "werd aangemaakt", ookal bestaat het nog # steeds. # Wat doet "%1$s" hier? -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "De pagina werd aangemaakt" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Het aanmaken van de pagina is mislukt" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Pagina:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import vanaf geselecteerde pagina" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exporteren naar geselecteerde pagina" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Een pagina aanmaken en ernaar exporteren" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nieuwe paginanaam: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exporteren/importeren naar schaal:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "aangeraden" @@ -10639,7 +10848,7 @@ msgstr "Interne relatie toegevoegd" msgid "Relation deleted" msgstr "Relatie verwijderd" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fout bij het opslaan van coördinaten voor de Designer." @@ -11091,215 +11300,6 @@ msgstr "" "de performantie en de wijziging ongedaan te maken indien er geen " "waarneembare verbetering vastgesteld kon worden." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Bewakingsinstructies" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"De phpMyAdmin-monitor kan u helpen bij het optimaliseren van de " -"serverconfiguratie en het opsporen van tijdrovende SQL-queries. Voor dit " -"laatste moet u de log_output-configuratieparameter instellen op 'TABLE' en " -"ofwel slow_query_log, ofwel general_log geactiveerd hebben. Merk echter op " -"dat general_log veel gegevens genereert en dat de belasting van de server " -"tot 15% kan stijgen." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Helaas ondersteunt uw databankserver het loggen naar een tabel niet. Dit is " -"een vereiste om de databanklogboeken te kunnen analyseren met phpMyAdmin. " -"Loggen naar een tabel wordt ondersteund vanaf MySQL 5.1.6. U kunt wel de " -"grafiekfunctionaliteit gebruiken." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Gebruik van de monitor:" - -#: server_status_monitor.php:485 -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 "" -"Uw browser zal alle weergegeven grafieken verversen na een vast interval. U " -"kan grafieken toevoegen en de ververssnelheid aanpassen onder " -"'Instellingen', of gelijk welke grafiek verwijderen via het tandwielicoon " -"bij iedere grafiek." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Om queries te tonen uit de logboeken, selecteer de relevante periode in een " -"willekeurige grafiek door de linkermuisknop in te drukken en over de grafiek " -"te slepen. Na het bevestiging wordt een tabel met gegroepeerde queries " -"geladen, daar kunt u op één van de SELECT-statements klikken om deze verder " -"te analyseren." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Hou rekening met:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Het inschakelen van de general_log kan de serverbelasting verhogen met " -"5-15%. Wees er ook bewust van dat het genereren van statistieken uit de " -"logboeken een belastende taak is, daarom is het aan te raden om alleen een " -"kleine periode te selecteren, en de general_log uit te schakelen en de tabel " -"te legen zodra het monitoren niet meer nodig is." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Een grafiek toevoegen" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Grafiek instellen" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Statusvariabele(n)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Selecteer series:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Algemeen bewaakt" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "of geef variabelenaam op:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Verschil weergeven" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Een scheiding toepassen" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Eenheid toevoegen aan gegevenswaarden" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Deze serie toevoegen" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Reeks leegmaken" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Series in grafiek:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logstatistieken" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Geselecteerde tijdspanne:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Enkel de opdrachten SELECT, INSERT, UPDATE en DELETE opvragen" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" -"Variabelegegevens verwijderen uit INSERT-opdrachten om beter te kunnen " -"groeperen" - -#: server_status_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultaten worden gegroepeerd door de tekst van de SQL-query." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Query-analyser" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d seconde" -msgstr[1] "%d seconden" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuut" -msgstr[1] "%d minuten" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Start bewaking" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instructies/Setup" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Klaar met slepen (herschikken) van de grafieken" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Grafieken verslepen ingeschakeld" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Vernieuwingsfrequentie" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Grafiekkolommen" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Grafiekschikking" - -#: server_status_monitor.php:736 -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 "" -"De volgorde van de grafieken wordt opgeslagen in de lokale opslag van uw " -"browser. Eventueel kan u dit exporteren, als u een ingewikkelde configuratie " -"heeft." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Standaardwaarde herstellen" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12413,24 +12413,24 @@ msgstr "" msgid "Wrong data" msgstr "Verkeerde gegevens" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Bladwijzer \"%s\" wordt gebruikt als standaard browsequery." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bladwijzer niet aangemaakt" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Getoond als PHP-code" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Gevalideerde SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12439,19 +12439,11 @@ msgstr "" "Tabel %s bevat geen unieke kolom. Functies zoals rasterbewerkingen, " "checkboxen, Bewerken, Kopiëren en Verwijderen, zijn niet beschikbaar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemen met de indexen van de tabel `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Deze SQL-query opslaan" - -#: sql.php:1191 -msgid "Label:" -msgstr "Label:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Geen gegevens om weer te geven" @@ -12530,6 +12522,10 @@ msgstr "X-waarden" msgid "Y-Axis label:" msgstr "Label van Y-as:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Startregel:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12661,31 +12657,31 @@ msgstr "Kies weer te geven kolom:" msgid "No column selected." msgstr "Geen kolom geselecteerd." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Tracking-rapport voor tabel `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versie %1$s is aangemaakt, tracking van %2$s is ingeschakeld." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Tracking van %1$s is uitgeschakeld op versie %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Tracking van %1$s is ingeschakeld op versie %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-statements uitgevoerd." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12693,115 +12689,115 @@ msgstr "" "U kunt de dump gebruiken door deze in een tijdelijke databank te importeren. " "Let er wel op dat u hier rechten voor nodig heeft." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" "De onderstaande 2 regels kunt u in commentaar zetten indien ze niet nodig " "zijn." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-statements geëxporteerd. Kopieer de dump of voer de dump uit." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Versie %s snapshot (SQL-code)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Tracking-gegevensdefinitie succesvol verwijderd" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Tracking-gegevensmanipulatie succesvol verwijderd" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Tracking-statements" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Laat %1$s zien met datums van %2$s tot %3$s door gebruiker %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Verwijder tracking-gegevensrij uit verslag" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Geen gegevens" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Definitie-statement" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Manipulatie-statement" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-dump (naar bestand)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Deze optie vervangt de tabel en alle gegevens van die tabel." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-uitvoering" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exporteren als %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Versies weergeven" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Tracking uitschakelen van %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Nu uitschakelen" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Tracking inschakelen van %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Nu inschakelen" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Versie %1$s van %2$s aanmaken" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Deze definitie-statements tracken:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Deze manipulatie-statements tracken:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Versie aanmaken" @@ -14143,6 +14139,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert is ingesteld op 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Hoofdingen iedere %s regels" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/pa.po b/po/pa.po index 36df0562cd..9fdf0a3e2c 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-09-01 12:11+0200\n" "Last-Translator: gurjit dhillon \n" "Language-Team: Punjabi %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "" @@ -3742,54 +3734,54 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3799,7 +3791,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3809,7 +3801,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3819,31 +3811,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5777,8 +5769,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6164,7 +6156,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6720,7 +6712,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6836,11 +6828,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6885,7 +6877,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7107,16 +7099,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7212,17 +7204,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7626,13 +7618,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7646,7 +7638,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8672,7 +8664,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8833,7 +8825,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9278,54 +9270,247 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9344,10 +9529,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9473,7 +9654,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9627,7 +9808,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9762,7 +9943,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9818,7 +9999,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9876,39 +10057,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9936,7 +10117,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10340,186 +10521,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11436,43 +11437,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11548,6 +11541,10 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11678,143 +11675,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 82883331f4..4cbdf2b43d 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "" @@ -105,7 +105,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, possible-php-format msgid "Database %1$s has been created." msgstr "" @@ -133,7 +133,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "" @@ -156,7 +156,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "" @@ -173,7 +173,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "" @@ -188,7 +188,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "" @@ -230,9 +230,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "" @@ -257,9 +257,9 @@ msgstr "" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "" @@ -309,7 +309,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "" @@ -385,7 +385,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "" @@ -393,17 +393,17 @@ msgstr "" msgid "Last version" msgstr "" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "" @@ -416,7 +416,7 @@ msgstr "" msgid "Action" msgstr "" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "" @@ -425,18 +425,18 @@ msgid "Delete tracking data for this table" msgstr "" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -444,11 +444,11 @@ msgstr "" msgid "Versions" msgstr "" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -633,7 +633,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, possible-php-format msgid "Bookmark %s created" msgstr "" @@ -655,7 +655,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -835,7 +835,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -844,7 +844,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -928,8 +928,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1052,13 +1052,13 @@ msgstr "" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "" @@ -1097,7 +1097,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "" @@ -1117,13 +1117,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1216,7 +1217,7 @@ msgstr "" msgid "Current settings" msgstr "" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "" @@ -1296,7 +1297,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1387,7 +1388,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "" @@ -1444,7 +1445,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "" @@ -1592,10 +1593,10 @@ msgstr "" msgid "Show query box" msgstr "" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1605,7 +1606,7 @@ msgstr "" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1687,7 +1688,7 @@ msgstr "" msgid "Ignore" msgstr "" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1703,7 +1704,7 @@ msgstr "" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2172,31 +2173,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, possible-php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2211,7 +2212,7 @@ msgstr "" msgid "Sort:" msgstr "" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "" @@ -2326,8 +2327,8 @@ msgstr[0] "" msgstr[1] "" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "" @@ -2336,14 +2337,14 @@ msgstr "" msgid "Delete the matches for the %s table?" msgstr "" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "" @@ -2405,41 +2406,32 @@ msgctxt "Last page" msgid "End" msgstr "" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, possible-php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2466,89 +2458,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, possible-php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, possible-php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2557,8 +2549,8 @@ msgstr "" msgid "With selected:" msgstr "" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2569,45 +2561,45 @@ msgstr "" msgid "Check All" msgstr "" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2682,38 +2674,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "" @@ -2746,14 +2738,14 @@ msgstr "" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "" @@ -2766,12 +2758,12 @@ msgstr "" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "" @@ -2898,15 +2890,15 @@ msgstr[1] "" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3141,7 +3133,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3481,7 +3473,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "" @@ -3540,7 +3532,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3579,49 +3571,49 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, possible-php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "" @@ -3735,54 +3727,54 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3792,7 +3784,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3802,7 +3794,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3812,31 +3804,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5770,8 +5762,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6157,7 +6149,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6713,7 +6705,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6829,11 +6821,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, possible-php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6878,7 +6870,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7100,16 +7092,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7205,17 +7197,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7619,13 +7611,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7639,7 +7631,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8665,7 +8657,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8826,7 +8818,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9271,54 +9263,247 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, possible-php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, possible-php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, possible-php-format msgid "Run SQL query/queries on server %s" @@ -9337,10 +9522,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9466,7 +9647,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9620,7 +9801,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9755,7 +9936,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9811,7 +9992,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9869,39 +10050,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9929,7 +10110,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10333,186 +10514,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, possible-php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, possible-php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, possible-php-format msgid "Questions since startup: %s" @@ -11429,43 +11430,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, possible-php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, possible-php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, possible-php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11541,6 +11534,10 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "" + #: tbl_create.php:34 #, possible-php-format msgid "Table %s already exists!" @@ -11669,143 +11666,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, possible-php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, possible-php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, possible-php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, possible-php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, possible-php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, possible-php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, possible-php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, possible-php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, possible-php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, possible-php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/pl.po b/po/pl.po index 2a9301e5f2..70e078518c 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-30 13:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Polish %2$s" msgstr[2] "%1$s dopasowań w %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Przeglądaj" @@ -2494,14 +2495,14 @@ msgstr "Przeglądaj" msgid "Delete the matches for the %s table?" msgstr "Usunąć dopasowania do tabeli %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Usuń" @@ -2563,45 +2564,34 @@ msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Początek wiersza" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Liczba wierszy:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Tryb" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "poziomo" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "poziomo (obrócone nagłówki)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "pionowo" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Nagłówki co %s wierszy" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sortuj wg klucza" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2628,68 +2618,68 @@ msgstr "Sortuj wg klucza" msgid "Options" msgstr "Opcje" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Częściowe teksty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Pełne teksty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Klucz relacyjny" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relacje wyświetlania kolumn" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Pokaż binarne treści" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Pokaż zawartość BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Pokaż binarne treści jako HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Ukryj transformacje przeglądarki" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Znany tekst" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Znane binarne" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Wiersz został usunięty" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Zabij" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Może być w przybliżeniu. Zobacz [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "w zapytaniu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2698,21 +2688,21 @@ msgstr "" "Ten widok ma przynajmniej taką liczbę wierszy (rekordów). Proszę odnieść się " "do %sdokumentacji%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Pokaż wiersze" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "wszystkich" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2721,8 +2711,8 @@ msgstr "Wykonanie zapytania trwało %01.4f sekund(y)" msgid "With selected:" msgstr "Z zaznaczonymi:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2733,45 +2723,45 @@ msgstr "Z zaznaczonymi:" msgid "Check All" msgstr "Zaznacz wszystkie" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Utwórz widok" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operacja na wynikach zapytania" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Podgląd wydruku" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Podgląd wydruku (z pełnymi tekstami)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Wyświetlanie wykresu" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Wizualizacja danych GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Łącza nie znaleziono" @@ -2851,38 +2841,38 @@ msgstr "Brak zdefiniowanego indeksu!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jednoznaczny" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Spakowany" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Moc" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Metoda porównywania napisów" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentarz" @@ -2917,14 +2907,14 @@ msgstr "Widok" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2937,12 +2927,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Szukaj" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Wstaw" @@ -3072,15 +3062,15 @@ msgstr[2] "Wstawionych rekordów: %1$d." msgid "Error while creating PDF:" msgstr "Błąd podczas tworzenia PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nie można zapisać ostatnich tabeli" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Ostatnie tabele" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Brak ostatnich tabel" @@ -3323,7 +3313,7 @@ msgid "Maximum rows to plot" msgstr "Maksymalna liczba wierszy do wykreślenia" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Przeglądaj zewnętrzne wartości" @@ -3731,7 +3721,7 @@ msgstr "Wyliczenie, wybrane z listy zdefiniowane wartości" msgid "Max: %s%s" msgstr "Maksymalny rozmiar: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3792,7 +3782,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "W linii" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilowanie" @@ -3831,49 +3821,49 @@ msgstr "Funkcja %s jest dotknięta przez znany błąd, zobacz %s" msgid "Click to toggle" msgstr "Kliknij, aby przełączać" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Wyszukaj w komputerze:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Wybierz katalog serwera WWW dla uploadu %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Nie można znaleźć katalogu do zapisu przesyłanych plików" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Brak plików do wysłania" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Opróżnij" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Wykonaj" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Drukuj" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Data utworzenia" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Ostatnia aktualizacja" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Ostatnie sprawdzanie" @@ -3993,58 +3983,58 @@ msgstr "można wykorzystać" msgid "numeric key detected" msgstr "wykryty klawisz numeryczny" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Wstaw" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Testuj" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Oba" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nigdzie" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Lewa" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Prawa" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Kliknij" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Podwójnie kliknij" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Wyłączone" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Otwórz" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Zamknięte" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4054,7 +4044,7 @@ msgstr "Zamknięte" msgid "structure" msgstr "struktura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4064,7 +4054,7 @@ msgstr "struktura" msgid "data" msgstr "dane" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4074,31 +4064,31 @@ msgstr "dane" msgid "structure and data" msgstr "struktura i dane" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Pokaż tylko podstawowe opcje do konfiguracji" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Własna - wyświetl wszystkie opcje konfiguracyjne" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Własna - jak wyżej, ale bez wyboru szybkiego/własnego" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "zakończone dodania" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "rozszerzone dodania" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "oba powyższe" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "żadne z powyższych" @@ -6258,8 +6248,8 @@ msgstr "" "Jeśli masz swoją nazwa użytkownika, ustaw ją tutaj (domyślnie " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Użytkownik" @@ -6689,7 +6679,7 @@ msgstr "Baza(y) danych:" msgid "Table(s):" msgstr "Tabela(e):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Wiersze:" @@ -7315,7 +7305,7 @@ msgid "No data found for GIS visualization." msgstr "Nie znaleziono danych do wizualizacji GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL zwrócił pusty wynik (zero wierszy)." @@ -7436,11 +7426,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Wyświetl zapytanie SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id wstawionego wiersza: %1$d" @@ -7491,7 +7481,7 @@ msgstr "Dodaj prefiks tabeli" msgid "Add prefix" msgstr "Dodaj prefiks" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Czy na pewno chcesz wykonać następującą kwerendę?" @@ -7714,16 +7704,16 @@ msgstr[0] "%s zanleziono inny wynik" msgstr[1] "%s zanleziono innych wyników" msgstr[2] "%s zanleziono inne wyniki" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "Filtr tabel wg nazwy" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Wyczyść szybki filtr" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "Filtr elementów wg nazwy" @@ -7821,17 +7811,17 @@ msgid "Drop the database (DROP)" msgstr "Usuń bazę danych (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tylko struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura i dane" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Tylko dane" @@ -8254,7 +8244,7 @@ msgstr "Umieść nazwy kolumn w pierwszym wierszu" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8262,7 +8252,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8280,7 +8270,7 @@ msgstr "Wersja PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9422,7 +9412,7 @@ msgstr "Atrybuty" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatkowo" @@ -9587,7 +9577,7 @@ msgid "Library" msgstr "Biblioteka" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Wersja" @@ -10058,71 +10048,296 @@ msgstr "" "może się różnić od uprawnień jakich faktycznie używa serwer. W takim " "przypadku powinieneś przed dalszą pracą %sprzeładować uprawnienia%s." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Wybrany użytkownik nie został znaleziony w tabeli uprawnień." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Dodałeś nowego użytkownika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekund" +msgstr[2] "%d sekundę" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuty" +msgstr[2] "%d minuty" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statystyki Log" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Wybrany zakres czasu:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" + +#: libraries/server_status_monitor.lib.php:111 +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." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Wyniki są pogrupowane według zapytania tekstu." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizuj zapytanie" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instrukcje monitora" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Monitor phpMyAdmin może pomóc w optymalizacji konfiguracji serwera i " +"wyśledzić czasochłonne zapytania. W tym ostatnim przypadku trzeba będzie " +"ustawić log_output dla 'TABLE' i albo mają slow_query_log lub general_log " +"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%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Niestety serwer bazy danych nie obsługuje rejestracji do tabeli, która jest " +"wymagana do analizy logów bazy danych za pomocą phpMyAdmin. Rejestracja do " +"tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " +"funkcji wykresów serwera jednak." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Korzystanie z monitora:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Twoja przeglądarka odświeży wszystkie wyświetlane wykresy w regularnych " +"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." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Aby wyświetlić zapytania z dzienników, wybierz odpowiedni przedział czasowy " +"na każdym wykresie, przytrzymując lewy przycisk myszy i przesuwanie na " +"wykresie. Po potwierdzeniu, to załaduje spis pogrupowanych pytań, nie można " +"kliknąć na wszelkich występujących instrukcji SELECT do dalszych analiz." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Proszę zwrócić uwagę:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Włączenie general_log może zwiększa obciążenie serwera o 5-15%. Również miej " +"świadomość, że generowanie statystyk z dzienników jest obciążenie intensywne " +"zadań, więc wskazane jest, aby wybrać tylko niewielki przedział czasowy i " +"wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " +"wymagane." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Dodaj wykres" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Ustawiony wykres" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Zmienna statusu(ów)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Wybierz serię:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Najczęściej monitorowany" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "lub wpisz nazwę zmiennej:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Wyświetl jako wartości różnicy" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Zastosuj dzielnik" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Dołącz urządzenia do wartości danych" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Dodaj tę serię" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Wyczyść serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Seria na wykresie:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Uruchom monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instrukcje/Setup" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Gotowe przestawienie/edycji wykresów" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Włącz podświetlanie" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Częstotliwość odświeżania" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Kolumny wykresu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Układ wykresu" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " +"Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Przywróć wartość domyślną" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Wynik SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Wygenerowany przez" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Wzrost rozmiaru pliku danych" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Inne" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Pocz" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Czas ogółem:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Czas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zamknij" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Czas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Pamiętaj zapytanie SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Nazwa" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10143,10 +10358,6 @@ msgstr "Wyczyść" msgid "Bookmark this SQL query:" msgstr "Pamiętaj zapytanie SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Niech każdy użytkownik ma dostęp do tej zakładki" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zastąp istniejącą zakładkę o tej samej nazwie" @@ -10288,7 +10499,7 @@ msgstr "Zaznacz tabele nieoptymalne" msgid "Sort" msgstr "Sortuj" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Brak" @@ -10444,7 +10655,7 @@ msgstr "Efektywne" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s została pomyślnie zmodyfikowana" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Błąd zapytania" @@ -10603,7 +10814,7 @@ msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" "Błąd krytyczny: Nawigacja może być dostępna tylko za pośrednictwem AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modyfikacja została zapisana" @@ -10659,7 +10870,7 @@ msgstr "Przełączanie małe/duże" msgid "Toggle relation lines" msgstr "Przełączanie linii relacji" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importuj/eksportuj współrzędne schematu PDF" @@ -10719,43 +10930,43 @@ msgstr "Utwórz" msgid "Active options" msgstr "Aktywne opcje" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Strona została stworzona" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Błąd tworzenia strony" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Strona" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Import z wybranej strony" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Eksport do wybranej strony" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Utwórz stronę i eksport do niej" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nowa nazwa strony: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Eksport/import w skali" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "zalecana" @@ -10785,7 +10996,7 @@ msgstr "Dodano wewnętrzne powiązanie" msgid "Relation deleted" msgstr "Usunięto powiązanie" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Błąd podczas zapisywania współrzędnych w widoku projektu." @@ -11236,216 +11447,6 @@ msgstr "" "ustawienia w czasie, obserwować lub odniesienie bazy danych, i cofnąć " "zmianę, gdyby nie było jednoznacznego wymiernego postępu." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instrukcje monitora" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Monitor phpMyAdmin może pomóc w optymalizacji konfiguracji serwera i " -"wyśledzić czasochłonne zapytania. W tym ostatnim przypadku trzeba będzie " -"ustawić log_output dla 'TABLE' i albo mają slow_query_log lub general_log " -"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_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Niestety serwer bazy danych nie obsługuje rejestracji do tabeli, która jest " -"wymagana do analizy logów bazy danych za pomocą phpMyAdmin. Rejestracja do " -"tabeli jest obsługiwana przez MySQL 5.1.6 i nowszej. Można nadal używać " -"funkcji wykresów serwera jednak." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Korzystanie z monitora:" - -#: server_status_monitor.php:485 -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 "" -"Twoja przeglądarka odświeży wszystkie wyświetlane wykresy w regularnych " -"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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Aby wyświetlić zapytania z dzienników, wybierz odpowiedni przedział czasowy " -"na każdym wykresie, przytrzymując lewy przycisk myszy i przesuwanie na " -"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_monitor.php:501 -msgid "Please note:" -msgstr "Proszę zwrócić uwagę:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Włączenie general_log może zwiększa obciążenie serwera o 5-15%. Również miej " -"świadomość, że generowanie statystyk z dzienników jest obciążenie intensywne " -"zadań, więc wskazane jest, aby wybrać tylko niewielki przedział czasowy i " -"wyłączyć general_log i opróżnić swoją tabelę raz monitorowania nie jest " -"wymagane." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Dodaj wykres" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Ustawiony wykres" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Zmienna statusu(ów)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Wybierz serię:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Najczęściej monitorowany" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "lub wpisz nazwę zmiennej:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Wyświetl jako wartości różnicy" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Zastosuj dzielnik" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Dołącz urządzenia do wartości danych" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Dodaj tę serię" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Wyczyść serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Seria na wykresie:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statystyki Log" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Wybrany zakres czasu:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Pobierać tylko oświadczenia SELECT, INSERT, UPDATE i DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Usuń zmiennych danych w oświadczeniu INSERT dla lepszej grupy" - -#: server_status_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Wyniki są pogrupowane według zapytania tekstu." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizuj zapytanie" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekund" -msgstr[2] "%d sekundę" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuty" -msgstr[2] "%d minuty" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Uruchom monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instrukcje/Setup" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Gotowe przestawienie/edycji wykresów" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Włącz podświetlanie" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Częstotliwość odświeżania" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Kolumny wykresu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Układ wykresu" - -#: server_status_monitor.php:736 -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 "" -"Układ wykresów są przechowywane w przeglądarce lokalnego przechowywania. " -"Możesz wyeksportować go, jeśli masz skomplikowany zestaw górę." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Przywróć wartość domyślną" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12547,24 +12548,24 @@ msgstr "Klucz powinien zawierać litery, cyfry [em]i[/em] znaki specjalne." msgid "Wrong data" msgstr "Nieprawidłowe dane" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Korzystanie z zakładki \"%s\" jako domyślne przeglądanie zapytania." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Zakładka nie utworzona" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Pokaż jako kod PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Weryfikacje SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12576,21 +12577,11 @@ msgstr "" "Tabela ta nie zawiera unikalnej kolumny. Funkcje związane z edycją siatki, " "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemy z indeksami tabeli `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Pamiętaj zapytanie SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Nazwa" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Brak danych do wyświetlenia" @@ -12666,6 +12657,12 @@ msgstr "Wartość X" msgid "Y-Axis label:" msgstr "Etykieta osi Y:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Początek wiersza" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12811,31 +12808,31 @@ msgstr "Wybierz kolumny do wyświetlenia" msgid "No column selected." msgstr "Nie żadnych wybrano rekordów" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Raport śledzenia tabeli `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Wersja %1$s stworzona, śledzenie dla %2$s jest aktywne." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Śledzenie dla %1$s zostało wyłączone w wersji %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Śledzenie dla %1$s zostało włączone w wersji %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instrukcje SQL zostały wykonane." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12843,114 +12840,114 @@ msgstr "" "Możesz wykonać zrzut poprzez tworzenie i używanie tymczasowej bazy danych. " "Upewnij się, że masz uprawnienia do tego." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Ujmij w komentarz te dwa wiersze jeśli ich nie potrzebujesz." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Instrukcje SQL zostały wyeksportowane. Proszę skopiować zrzut lub go wykonać." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Wersja %s migawki (kod SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Śledzenie definicją danych pomyślnie usunięte" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Śledzenie manipulacją danymi pomyślnie usunięte" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Śledzenie instrukcji" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Pokaż %1$s w okresie od %2$s do %3$s wg użytkownika %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Usuń wiersz śledzenia danych z raportu" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Brak danych" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instrukcja definiowania danych" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instrukcja przetwarzania danych" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Zrzut SQL (plik do pobrania)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Zrzut SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ta opcja zamienia twoją tabelę i zawarte w niej dane." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Wykonanie SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Eksportuj jako %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Pokaż wersje" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktywuj śledzenie dla %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Dezaktywuj teraz" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktywuj śledzenie %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktywuj teraz" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Utwórz wersję %1$s dla %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Śledź te instrukcje definicji danych:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Śledź te instrukcje manipulowania danymi:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Utwórz wersję" @@ -14279,6 +14276,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert jest ustawiony na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Nagłówki co %s wierszy" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/pt.po b/po/pt.po index 37095d8c8f..00f81893d9 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-11 00:09+0200\n" "Last-Translator: JP KAN \n" "Language-Team: Portuguese %2$s" msgstr[1] "%1$s resultados em %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Procurar" @@ -2478,14 +2479,14 @@ msgstr "Procurar" msgid "Delete the matches for the %s table?" msgstr "Apagar os semelhantes para a %s tabela?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Apagar" @@ -2547,47 +2548,36 @@ msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Linha inicial" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "Número de registos por página" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Modo" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rodados)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeçalho a cada %s linhas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Ordenar por chave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2614,68 +2604,68 @@ msgstr "Ordenar por chave" msgid "Options" msgstr "Opções" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Coluna de visualização relacional" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Exibir conteúdos BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Binario bem conhecido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Registo eliminado" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Termina" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Pode ser aproximado. Veja o [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "na pesquisa" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2684,21 +2674,21 @@ msgstr "" "Esta vista tem número de linhas aproximado. Por favor, consulte a " "%sdocumentação%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Mostrando registos" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "O Query demorou %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2707,8 +2697,8 @@ msgstr "O Query demorou %01.4f sec" msgid "With selected:" msgstr "Com os seleccionados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2719,45 +2709,45 @@ msgstr "Com os seleccionados:" msgid "Check All" msgstr "Todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Criar visualização" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Vista de impressão" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Vista de impressão (com texto inteiro)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Mostrar gráfico" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link não encontrado" @@ -2836,38 +2826,38 @@ msgstr "Nenhum indíce definido!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Quantidade" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Agrupamento (Collation)" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentário" @@ -2901,14 +2891,14 @@ msgstr "Vista" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estrutura" @@ -2921,12 +2911,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Pesquisar" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Insere" @@ -3053,15 +3043,15 @@ msgstr[1] "%1$d linha(s) inseridas." msgid "Error while creating PDF:" msgstr "Erro ao criar o PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Não foi possível salvar a tabela recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabelas Recentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Não existem tabelas recentes" @@ -3310,7 +3300,7 @@ msgid "Maximum rows to plot" msgstr "Número máximo de linhas para traçar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" @@ -3685,7 +3675,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3746,7 +3736,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "na linha" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfil" @@ -3785,49 +3775,49 @@ msgstr "A funcionalidade %s é afectada por um bug conhecido, veja %s" msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir da directoria de upload do servidor %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Limpa" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Executar" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Imprimir" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Criação" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Última actualização" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Última Verificação" @@ -3952,58 +3942,58 @@ msgstr "possível 'exploit'" msgid "numeric key detected" msgstr "Tecla numérica detectada" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Teste" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Ambos" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Em nenhum lugar" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Esquerda" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Direita" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Desactidado" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Abrir" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4013,7 +4003,7 @@ msgstr "Fechado" msgid "structure" msgstr "estrutura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4023,7 +4013,7 @@ msgstr "estrutura" msgid "data" msgstr "dados" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4033,31 +4023,31 @@ msgstr "dados" msgid "structure and data" msgstr "estrutura e dados" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rápida - mostrar apenas o mínimo de opções para configurar" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personalizada - exibir todas as opções possíveis para configurar" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "adições completas" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "inserções extendidas" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ambos acima" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nenhuma das acima" @@ -6262,8 +6252,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Utilizador :" @@ -6682,7 +6672,7 @@ msgstr "Base de Dados" msgid "Table(s):" msgstr "Tabelas" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7275,7 +7265,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL não retornou nenhum registo." @@ -7398,12 +7388,12 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 #, fuzzy msgid "Showing SQL query" msgstr "Mostrar queries completos" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7458,7 +7448,7 @@ msgstr "Substituir prefixo da tabela" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7686,18 +7676,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Alterar a ordem da tabela por" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7801,17 +7791,17 @@ msgid "Drop the database (DROP)" msgstr "Apagar a Base de Dados (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Somente a estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Apenas dados" @@ -8270,7 +8260,7 @@ msgstr "Colocar os nomes das colunas na primeira linha" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8278,7 +8268,7 @@ msgstr "Máquina" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8296,7 +8286,7 @@ msgstr "versão do PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9420,7 +9410,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9594,7 +9584,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "versão do PHP" @@ -10070,68 +10060,283 @@ msgstr "" "privilégios que o servidor usa se alterações manuais nele forem feitas. " "Neste caso, deve %sreload the privileges%s antes de continuar." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "O utilizador selecionado não se encontra na tabela de privilégios." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Acrescentou um novo utilizador." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "por segundo" +msgstr[1] "por segundo" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "em uso" +msgstr[1] "em uso" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Estatísticas dos registos" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Seleccionar Tabelas" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Tipo de Query" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Adiciona novo campo" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Remover a Base de Dados" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Seleccionar Tabelas" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Acrescenta um utilizador" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "Comando SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +msgid "Start Monitor" +msgstr "Estado" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Ativar destaque" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Gerado por" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Adicionar/Remover Campos" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Gerado por" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Apenas dados" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Outros" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Tempo Total:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Fechar" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Marcar este comando SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiqueta" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Deixar todos os utilizadores acederem a este marcador" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -10152,10 +10357,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "Marcar este comando SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Deixar todos os utilizadores acederem a este marcador" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10295,7 +10496,7 @@ msgstr "Verificar tabelas com overhead" msgid "Sort" msgstr "Ordenação" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10464,7 +10665,7 @@ msgstr "Em uso" msgid "Table %1$s has been altered successfully" msgstr "Os utilizadores selecionado foram apagados com sucesso." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10631,7 +10832,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modificações foram guardadas" @@ -10690,7 +10891,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Chinês Tradicional" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10765,48 +10966,48 @@ msgstr "Criar" msgid "Active options" msgstr "Opções da tabela" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "A tabela %s foi eliminada" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Utilização" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importar" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Criar um novo índice" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nome do Utilizador" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10836,7 +11037,7 @@ msgstr "Relação interna adicionada" msgid "Relation deleted" msgstr "Relação apagada" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Erro ao gravar as coordenadas para o Designer." @@ -11263,206 +11464,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Adiciona novo campo" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Remover a Base de Dados" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Seleccionar Tabelas" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Acrescenta um utilizador" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "Comando SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Estatísticas dos registos" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Seleccionar Tabelas" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Tipo de Query" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "por segundo" -msgstr[1] "por segundo" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "em uso" -msgstr[1] "em uso" - -#: server_status_monitor.php:674 -#, fuzzy -msgid "Start Monitor" -msgstr "Estado" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Ativar destaque" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Gerado por" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Adicionar/Remover Campos" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12405,28 +12406,28 @@ msgstr "" msgid "Wrong data" msgstr "Sem bases de dados" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Marcador %s criado" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validar SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12439,21 +12440,11 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Marcar este comando SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiqueta" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12543,6 +12534,12 @@ msgstr "Valor" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Linha inicial" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12693,152 +12690,152 @@ msgstr "Escolha a coluna para mostrar" msgid "No column selected." msgstr "Nenhum registo(linha) seleccionado" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Detecção de Alterações está activa." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Sem bases de dados" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Dados" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Tipo de Exportação" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Apagar dados de tracking para esta tabela" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "Criar versão" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Criar versão" @@ -14064,6 +14061,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está definida com o valor 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeçalho a cada %s linhas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/pt_BR.po b/po/pt_BR.po index 742dc8af6c..24d32a6ec1 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-09 06:05+0200\n" "Last-Translator: Rodrigo Souza \n" "Language-Team: Portuguese (Brazil) %2$s" msgstr[1] "%1$s resultados em %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Visualizar" @@ -2457,14 +2458,14 @@ msgstr "Visualizar" msgid "Delete the matches for the %s table?" msgstr "Excluir correspondentes para a tabela %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Remover" @@ -2526,41 +2527,32 @@ msgctxt "Last page" msgid "End" msgstr "Fim" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Linha inicial:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Número de linhas:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Modo:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (cabeçalhos rotacionados)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Cabeçalho a cada %s linhas" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Ordenar pela chave" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2587,68 +2579,68 @@ msgstr "Ordenar pela chave" msgid "Options" msgstr "Opções" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Textos parciais" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Textos completos" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Chave de relação" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Exibir coluna relacional" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Mostrar conteúdo binário" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Exibir conteúdo BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Mostrar conteúdo binário como HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Ocultar transformações do navegador" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Texto bem conhecido" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Binário bem conhecido" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Registro eliminado" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Finalizar" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Pode ser aproximado. Veja a [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "na consulta" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2657,21 +2649,21 @@ msgstr "" "Esta view tem pelo menos esse número de linhas. Por favor, consulte a " "%sdocumentação%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Mostrando registros" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Consulta levou %01.4f segundos" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2680,8 +2672,8 @@ msgstr "Consulta levou %01.4f segundos" msgid "With selected:" msgstr "Com marcados:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2692,45 +2684,45 @@ msgstr "Com marcados:" msgid "Check All" msgstr "Marcar todos" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Criar view" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operações resultantes das consultas" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Imprimir view" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Imprimir view (com textos completos)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Exibir gráfico" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualisar dados GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Link não encontrado" @@ -2809,38 +2801,38 @@ msgstr "Nenhum índice definido!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Índices" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Único" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pacote" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalidade" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Colação" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentário" @@ -2875,14 +2867,14 @@ msgstr "Visualizar" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Estrutura" @@ -2895,12 +2887,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Procurar" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Inserir" @@ -3027,15 +3019,15 @@ msgstr[1] "%1$d linhas inseridas." msgid "Error while creating PDF:" msgstr "Erro ao criar o PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Não foi possível salvar a tabela recente" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabelas recentes" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Não existem tabelas recentes" @@ -3277,7 +3269,7 @@ msgid "Maximum rows to plot" msgstr "Número máximo de linhas para traçar" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Visualizar valores estrangeiros" @@ -3689,7 +3681,7 @@ msgstr "Uma enumeração, escolhida de uma lista de valores definidos" msgid "Max: %s%s" msgstr "Tamanho máximo: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Query SQL:" @@ -3748,7 +3740,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Em linha" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Perfil" @@ -3787,50 +3779,50 @@ msgstr "A funcionalidade %s é afetada por um bug conhecido, veja %s" msgid "Click to toggle" msgstr "Clique para alternar" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Procurar no seu computador:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Selecionar a partir do diretório de upload do servidor %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Não existem arquivos para fazer upload" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Limpar" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Executar" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Imprimir" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Criação" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Última atualização" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Última verificação" @@ -3949,54 +3941,54 @@ msgstr "Possível exploit" msgid "numeric key detected" msgstr "tecla numérica detectada" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Ícones" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Texto" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Ambos" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Lugar nenhum" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Esquerda" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Direita" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Clique" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Clique duplo" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Desabilitado" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Abrir" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Fechado" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4006,7 +3998,7 @@ msgstr "Fechado" msgid "structure" msgstr "estrutura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4016,7 +4008,7 @@ msgstr "estrutura" msgid "data" msgstr "dados" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4026,31 +4018,31 @@ msgstr "dados" msgid "structure and data" msgstr "estrutura e dados" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rápida - exibir apenas o mínimo de opções para configurar" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Personalizada - exibir todas as opções possíveis para configurar" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "inserções completas" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "inserções extendidas" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ambos acima" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nenhuma das acima" @@ -6173,8 +6165,8 @@ msgstr "" "Se você tiver um nome de usuário personalizado, especifique-o aqui (o padrão " "é [kbd]anônimo[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Nome de usuário" @@ -6589,7 +6581,7 @@ msgstr "Banco(s) de dados:" msgid "Table(s):" msgstr "Tabela(s):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Registros:" @@ -7215,7 +7207,7 @@ msgid "No data found for GIS visualization." msgstr "Não foram encontrados dados para a visualização GIS." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "O MySQL retornou um conjunto vazio (ex. zero registros)." @@ -7335,11 +7327,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Exibindo consulta SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id da linha inserida: %1$d" @@ -7384,7 +7376,7 @@ msgstr "Adicionar prefixo de tabelas:" msgid "Add prefix" msgstr "Adicionar índice" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Você realmente deseja executar a query SQL a seguir?" @@ -7606,16 +7598,16 @@ msgid_plural "%s other results found" msgstr[0] "%s outro resultado encontrado" msgstr[1] "%s outros resultados encontrados" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrar bancos de dados por nome" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Limpar o filtro rápido" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrar itens por nome" @@ -7713,17 +7705,17 @@ msgid "Drop the database (DROP)" msgstr "Apagar o banco de dados (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Somente estrutura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Estrutura e dados" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Somente dados" @@ -8138,13 +8130,13 @@ msgstr "Colocar os nomes das colunas na primeira linha:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Host:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Tempo de geração:" @@ -8158,7 +8150,7 @@ msgstr "Versão do PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Banco de dados:" @@ -9285,7 +9277,7 @@ msgstr "Atributos" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9448,7 +9440,7 @@ msgid "Library" msgstr "Biblioteca" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Versão" @@ -9912,54 +9904,276 @@ msgstr "" "privilégios que o servidor usa se eles foram mudados manualmente. Neste " "caso, você deve usar %sAtualizar privilégios%s antes de continuar." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 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." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Você adicionou um novo usuário." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d segundo" +msgstr[1] "%d segundos" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuto" +msgstr[1] "%d minutos" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Estatísticas de log" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Faixa de tempo selecionada:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Somente obter os comandos SELECT, INSERT, UPDATE e DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Remova dados de variável em comandos INSERT para melhor agrupamento" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Escolha de qual log você deseja que as estatísticas sejam geradas." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultados são agrupados por texto de consulta." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analisador de consulta" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Instruções do monitor" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"O Monitor do phpMyAdmin pode auxiliá-lo na otimização da configuração do " +"servidor e rastrear consultas com tempos intensos. Para este último, você " +"precisará definir log_output na 'TABLE', e ter slow_query_log ou general_log " +"habilitado. Note, porém, que general_log produz muitos dados e aumenta a " +"carga do servidor em até 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Infelizmente seu servidor de banco de dados não suporta gravação de logs em " +"tabela, o que é um requisito para análise de logs do banco de dados com " +"phpMyAdmin. A gravação de logs para tabela é suportada pelo MySQL 5.1.6 e " +"posteriores. Apesar disso, você ainda pode utilizar as funcionalidades de " +"gráficos no servidor." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Usando o monitor:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Seu navegador vai atualizar todos os gráficos exibidos em intervalo regular. " +"Você pode adicionar gráficos e alterar a taxa de atualização em " +"\"Configurações\", ou remover qualquer gráfico usando o ícone da engrenagem " +"em cada gráfico." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Para exibir consultas a partir dos logs, selecione o intervalo de tempo " +"relevante em cada gráfico segurando o botão esquerdo do mouse e deslocando " +"pelo gráfico. Uma vez confirmada, isso vai carregar uma tabela de consultas " +"agrupadas, e lá é possível clicar em qualquer ocorrência de comandos SELECT " +"para, então, analisá-los." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Favor perceber que:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Habilitar o general_log pode aumentar a carga do servidor entre 5 e 15%. " +"Também esteja ciente de que a criação de estatísticas a partir de logs é uma " +"tarefa de carga intensiva. Então, aconselha-se a selecionar somente um " +"pequeno intervalo de tempo, desabilitar o general_log e esvaziar sua tabela " +"assim que o monitoramento não for mais necessário." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Adicionar gráfico" + +# 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. +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Gráfico predefinido" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Variável(is) de status" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Selecione série:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Normalmente monitorado" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ou digite o nome da variável:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Exibir como valor diferencial" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Aplicar um divisor" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Anexar unidade a valores de dados" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Adicionar esta série" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Limpar séries" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Séries no gráfico:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Iniciar monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruções/Configurações" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Terminou de arrastar (reorganizar) os gráficos" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Habilita o arraste de gráficos" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Taxa de atualização" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Colunas do gráfico" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Organização de gráficos" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"A organização dos gráficos é armazenada no armazenamento local dos " +"navegadores. Você pode exportá-la, se você tiver uma configuração complicada." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Resetar para o padrão" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Resultado SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Gerado por:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Perfil detalhado" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Ordem" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Estado" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Índice por estado" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Tempo Total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Tempo" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Chamadas" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø Tempo" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Marcar essa consulta SQL" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Rótulo:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Deixar qualquer usuário acessar esse marcador" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9978,10 +10192,6 @@ msgstr "Limpar" msgid "Bookmark this SQL query:" msgstr "Marcar essa query SQL:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Deixar qualquer usuário acessar esse marcador" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Substituir marcador de mesmo nome existente" @@ -10121,7 +10331,7 @@ msgstr "Verificar tabelas com sobrecarga" msgid "Sort" msgstr "Ordenar" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Nenhum wrap (padrão: none)" @@ -10275,7 +10485,7 @@ msgstr "Efetivo" msgid "Table %1$s has been altered successfully" msgstr "A tabela %1$s foi alterada com sucesso" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Erro de consulta" @@ -10426,7 +10636,7 @@ msgstr "Erro no arquivo ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Erro fatal: A navegação somente pode ser acessada via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modificações foram salvas" @@ -10482,7 +10692,7 @@ msgstr "Mudar para pequeno/grande" msgid "Toggle relation lines" msgstr "Alternar linhas de relação" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importar/Exportar coordenadas para esquema PDF" @@ -10540,39 +10750,39 @@ msgstr "Agregar" msgid "Active options" msgstr "Opções ativas" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "A página foi criada" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Falha na criação da página" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Página:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importar da página selecionada" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportar para a página selecionada" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Criar uma página e exportar para ela" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nome da nova página: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exportar/Importar para escala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomendado" @@ -10600,7 +10810,7 @@ msgstr "Adicionado relacionamento interno" msgid "Relation deleted" msgstr "Relacionamento apagado" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Erro ao salvar coordenada para o Designer." @@ -11050,215 +11260,6 @@ msgstr "" "de cada vez, observar ou testar a performance do seu banco de dados, e " "desfazer a alteração se não houver melhoramentos claramente mensuráveis." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Instruções do monitor" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"O Monitor do phpMyAdmin pode auxiliá-lo na otimização da configuração do " -"servidor e rastrear consultas com tempos intensos. Para este último, você " -"precisará definir log_output na 'TABLE', e ter slow_query_log ou general_log " -"habilitado. Note, porém, que general_log produz muitos dados e aumenta a " -"carga do servidor em até 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Infelizmente seu servidor de banco de dados não suporta gravação de logs em " -"tabela, o que é um requisito para análise de logs do banco de dados com " -"phpMyAdmin. A gravação de logs para tabela é suportada pelo MySQL 5.1.6 e " -"posteriores. Apesar disso, você ainda pode utilizar as funcionalidades de " -"gráficos no servidor." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Usando o monitor:" - -#: server_status_monitor.php:485 -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 "" -"Seu navegador vai atualizar todos os gráficos exibidos em intervalo regular. " -"Você pode adicionar gráficos e alterar a taxa de atualização em " -"\"Configurações\", ou remover qualquer gráfico usando o ícone da engrenagem " -"em cada gráfico." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Para exibir consultas a partir dos logs, selecione o intervalo de tempo " -"relevante em cada gráfico segurando o botão esquerdo do mouse e deslocando " -"pelo gráfico. Uma vez confirmada, isso vai carregar uma tabela de consultas " -"agrupadas, e lá é possível clicar em qualquer ocorrência de comandos SELECT " -"para, então, analisá-los." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Favor perceber que:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Habilitar o general_log pode aumentar a carga do servidor entre 5 e 15%. " -"Também esteja ciente de que a criação de estatísticas a partir de logs é uma " -"tarefa de carga intensiva. Então, aconselha-se a selecionar somente um " -"pequeno intervalo de tempo, desabilitar o general_log e esvaziar sua tabela " -"assim que o monitoramento não for mais necessário." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Adicionar gráfico" - -# 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_monitor.php:519 -msgid "Preset chart" -msgstr "Gráfico predefinido" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Variável(is) de status" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Selecione série:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Normalmente monitorado" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ou digite o nome da variável:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Exibir como valor diferencial" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Aplicar um divisor" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Anexar unidade a valores de dados" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Adicionar esta série" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Limpar séries" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Séries no gráfico:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Estatísticas de log" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Faixa de tempo selecionada:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Somente obter os comandos SELECT, INSERT, UPDATE e DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Remova dados de variável em comandos INSERT para melhor agrupamento" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Escolha de qual log você deseja que as estatísticas sejam geradas." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultados são agrupados por texto de consulta." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analisador de consulta" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d segundo" -msgstr[1] "%d segundos" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuto" -msgstr[1] "%d minutos" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Iniciar monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruções/Configurações" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Terminou de arrastar (reorganizar) os gráficos" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Habilita o arraste de gráficos" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Taxa de atualização" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Colunas do gráfico" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Organização de gráficos" - -#: server_status_monitor.php:736 -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 "" -"A organização dos gráficos é armazenada no armazenamento local dos " -"navegadores. Você pode exportá-la, se você tiver uma configuração complicada." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Resetar para o padrão" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12364,24 +12365,24 @@ msgstr "A chave deve conter letras, números, [em]e[/em] caracteres especiais." msgid "Wrong data" msgstr "Dados incorretos" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Usando marcador \"%s\" como query padrão de navegação." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Marcador não criado" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Exibindo como código PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL validado" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12390,19 +12391,11 @@ msgstr "" "A tabela %s não contém uma coluna única. As opções edição em grade, " "checkbox, Editar, Copiar e Apagar não estão disponíveis." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problemas com os índices da tabela `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Marcar essa consulta SQL" - -#: sql.php:1191 -msgid "Label:" -msgstr "Rótulo:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Sem dados para mostrar" @@ -12478,6 +12471,10 @@ msgstr "Valores X" msgid "Y-Axis label:" msgstr "Rótulo do Eixo Y:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Linha inicial:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12608,31 +12605,31 @@ msgstr "Marque a coluna para exibir:" msgid "No column selected." msgstr "Nenhuma coluna selecionada." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Relatório de rastreamento para tabela `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Versão %1$s foi criada, rastreamento para %2$s está ativado(a)." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Rastreamento para %1$s foi desativado na versão %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Rastreamento para %1$s foi ativado na versão %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Instruções SQL executadas." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12640,113 +12637,113 @@ msgstr "" "Você pode executar o dump criando e usando uma tabela temporária. Favor " "certificar-se de ter os privilégios necessários." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Comente estas duas linhas se você não precisa delas." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "Instruções SQL exportadas. Por favor, copie a saída ou execute-as." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Instantâneo (código SQL) da versão %s" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Definição de dados de rastreamento removidos com sucesso" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Manipulação de dados de rastreamento removida com sucesso" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Rastreando instruções" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Mostrar %1$s com datas desde %2$s até %3$s pelo usuário %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Excluir dados de rastreamento desta coluna do relatório" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nenhum dado" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Data" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Instrução de definição de dados" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Instrução de manipulação de dados" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Despejar SQL (download de arquivo)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Despejar SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Esta opção irá substituir sua tabela e os dados nela contidos." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Execução SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportar como %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Exibir versões" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Desativar rastreamento para %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Desativar agora" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Ativar rastreamento para %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ativar agora" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Criar versão %1$s de %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Rastrear essas instruções de definição de dados:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Rastrear essas instruções de manipulação de dados:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Criar versão" @@ -14081,6 +14078,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert está com valor 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Cabeçalho a cada %s linhas" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/ro.po b/po/ro.po index 088497b4e6..b8534e7c8e 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-04-03 09:45+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Romanian %s" msgstr[2] "%s rezultat(e) în interiorul tabelului %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Navigare" @@ -2612,14 +2613,14 @@ msgstr "Navigare" msgid "Delete the matches for the %s table?" msgstr "Ștergeți potrivirile pentru tabelul %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Șterge" @@ -2692,46 +2693,34 @@ msgctxt "Last page" msgid "End" msgstr "Sfîrșit" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Dum" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Număr de rânduri:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Lun" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "orizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "orizontal (colontitlu rotativ)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertical" -#: libraries/DisplayResults.class.php:933 -#, 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:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sortare după cheie" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2758,75 +2747,75 @@ msgstr "Sortare după cheie" msgid "Options" msgstr "Opțiuni" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Texte parțiale" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Texte întregi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Cheie relațională" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Relational display field" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Afişează conţinut binar" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Afişează conţinut BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Afișează conținutul binar ca HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Ascunde transformarea browser-ului" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Text Bine Cunoscut" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 #, fuzzy msgid "Well Known Binary" msgstr "Binar Bine Cunoscut" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Linia a fost ștearsă" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Oprește" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Poate fi aproximativ. Vezi [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "în interogarea" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2834,21 +2823,21 @@ msgid "" msgstr "" "Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Afișează înregistrări" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "total" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "comanda a durat %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2857,8 +2846,8 @@ msgstr "comanda a durat %01.4f sec" msgid "With selected:" msgstr "Cele bifate:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2869,48 +2858,48 @@ msgstr "Cele bifate:" msgid "Check All" msgstr "Marchează toate" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportă" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Creare relație" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operațiuni asupra rezultatelor interogării" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Vizualizare imprimare" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Vizualizare listare (împreună cu text)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Arată schema PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Legatură nevalidă" @@ -2991,38 +2980,38 @@ msgstr "Index nu este definit!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexuri" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unic" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Împachetat" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Cardinalitate" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Interclasare" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Comentariu" @@ -3055,14 +3044,14 @@ msgstr "Vizualizare" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Structură" @@ -3075,12 +3064,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Caută" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Inserare" @@ -3211,15 +3200,15 @@ msgstr[2] "%1$d rânduri inserate." msgid "Error while creating PDF:" msgstr "Eroare la creare PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nu s-a putut salva tabelul recent" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Tabele recente" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nu sunt tabele recente" @@ -3471,7 +3460,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Caută printre valori necunoscute" @@ -3829,7 +3818,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Mărime maximă: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3893,7 +3882,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Motoare" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Creare profil" @@ -3936,50 +3925,50 @@ msgstr "Funcționalitatea %s este afectată de o eroare cunoscută, vedeți %s" msgid "Click to toggle" msgstr "Click pentru a selecta" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Caută în calculatorul tău:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Directorul stabilit pentru încărcare nu poate fi găsit" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nu sunt fișiere pentru încărcare" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Golește" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Execută" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Listare" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Creare" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Ultima actualizare" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Ultima verficare" @@ -4108,60 +4097,60 @@ msgstr "" msgid "numeric key detected" msgstr "cheie numerica detectată" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Test" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Ambele" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nicăieri" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Stânga" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Dreapta" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Dezactivat" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Deschis" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Citare neînchisă" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4172,7 +4161,7 @@ msgstr "Citare neînchisă" msgid "structure" msgstr "Structură" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4182,7 +4171,7 @@ msgstr "Structură" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4194,35 +4183,35 @@ msgstr "" msgid "structure and data" msgstr "Structura și date" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rapid - afișează doar opțiunile minimale pentru configurare" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Customizat - afișează toate opțiunile posibile pentru configurare" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Customizat - ca mai sus, dar fără alegerea de rapid/customizat" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Inserări complete" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Inserări extinse" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ambele de mai sus" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "niciuna din cele de mai sus" @@ -6538,8 +6527,8 @@ msgstr "" "Dacă aveți un nume de utilizator, specificați-l aici ( default este " "[kbd]anonymous[/kbd] )" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Nume utilizator:" @@ -6973,7 +6962,7 @@ msgstr "Bază(e) de date:" msgid "Table(s):" msgstr "Tabelă(e):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rânduri:" @@ -7624,7 +7613,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL a dat un set de rezultate gol (zero linii)." @@ -7752,11 +7741,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Afișare interogare SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "ID rînd inserat: %1$d" @@ -7811,7 +7800,7 @@ msgstr "Înlocuiește prefixul tabelei" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8037,18 +8026,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "nume tabel" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8168,17 +8157,17 @@ msgid "Drop the database (DROP)" msgstr "Ștergeți baza de date (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Numai structura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Structura și date" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Numai date" @@ -8632,7 +8621,7 @@ msgstr "Pune numele coloanelor în primul rând" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8640,7 +8629,7 @@ msgstr "Gazda" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8658,7 +8647,7 @@ msgstr "Versiune PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9871,7 +9860,7 @@ msgstr "Proprietăți" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -10046,7 +10035,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Persană" @@ -10537,69 +10526,294 @@ msgstr "" "În acest caz, reîncărcați de aici înainte de a continua %sreîncărcarea " "drepturilor%s." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Utilizatorul selectat nu a fost găsit în tabelul de drepturi." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Ați adăugat un nou utilizator." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "pe secundă" +msgstr[1] "pe secundă" +msgstr[2] "pe secundă" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "în folosință" +msgstr[1] "în folosință" +msgstr[2] "în folosință" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statisticile rîndului" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Perioada selectată:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Tip interogare" + +#: libraries/server_status_monitor.lib.php:135 +#, fuzzy +#| msgid "Introduction" +msgid "Monitor Instructions" +msgstr "Introducere" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "Adaugă %s cîmp(uri)" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Redenumire bază de date în" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Selectează tabele" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Denumire de tabel nevalidă" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Adaugă un server nou" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "Comanda SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Dum" + +#: libraries/server_status_monitor.lib.php:294 +#, fuzzy +#| msgid "Introduction" +msgid "Instructions/Setup" +msgstr "Introducere" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +# Activați evidențierea +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Activați highlighting-ul" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Reîncarcă" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Adaugă/șterge coloane" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generat de" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Fișiere cu date" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Începutul" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Total" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Timp" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Închide" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Timp" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Pune semn de carte la această comandă SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etichetă" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10621,10 +10835,6 @@ msgstr "Calendar" msgid "Bookmark this SQL query:" msgstr "Pune semn de carte la această comandă SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Înlocuiește semnul de carte cu același nume" @@ -10762,7 +10972,7 @@ msgstr "Verificare depășit" msgid "Sort" msgstr "Sortare" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10932,7 +11142,7 @@ msgstr "Efectiv" msgid "Table %1$s has been altered successfully" msgstr "Tabelul %1$s a fost alterat cu succes" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -11107,7 +11317,7 @@ msgstr "Eroare în arhiva ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Modificările au fost salvate" @@ -11165,7 +11375,7 @@ msgstr "Comutare mare/mică" msgid "Toggle relation lines" msgstr "Pentru a alege relația, faceți clic:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -11230,51 +11440,51 @@ msgstr "Agregat" msgid "Active options" msgstr "Opțiuni tabel" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Pagina a fost creată" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Pagina nu a putut fi creată" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Pagină" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Import fișiere" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Creează un nou index" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Nume utilizator" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Exportă/Importă la scală" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "recomandat" @@ -11304,7 +11514,7 @@ msgstr "Relație internă adăugată" msgid "Relation deleted" msgstr "Relație ștearsă" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Eroare la salvarea coordonatelor pentru Designer." @@ -11745,216 +11955,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -#| msgid "Introduction" -msgid "Monitor Instructions" -msgstr "Introducere" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "Adaugă %s cîmp(uri)" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Redenumire bază de date în" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Selectează tabele" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Denumire de tabel nevalidă" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Adaugă un server nou" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "Comanda SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statisticile rîndului" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Perioada selectată:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Tip interogare" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "pe secundă" -msgstr[1] "pe secundă" -msgstr[2] "pe secundă" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "în folosință" -msgstr[1] "în folosință" -msgstr[2] "în folosință" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Dum" - -#: server_status_monitor.php:681 -#, fuzzy -#| msgid "Introduction" -msgid "Instructions/Setup" -msgstr "Introducere" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -# Activați evidențierea -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Activați highlighting-ul" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Reîncarcă" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Adaugă/șterge coloane" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12908,28 +12908,28 @@ msgstr "" msgid "Wrong data" msgstr "Nu sînt baze de date" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Semnul de carte %s a fost creat" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Afișare ca și cod PHP" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Validează SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12942,21 +12942,11 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Probleme cu indexul tabelului `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Pune semn de carte la această comandă SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etichetă" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13051,6 +13041,12 @@ msgstr "Valoare" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Dum" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13204,149 +13200,149 @@ msgstr "Selectează coloana pentru afișare" msgid "No column selected." msgstr "Niciun rând selectat" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Monitorizarea este activată" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy msgid "Delete tracking data row from report" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Nu sînt baze de date" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Date" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Modul de export" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format msgid "Deactivate tracking for %s" msgstr "Șterge datele urmărite din acest tabel" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Creare relație" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Creare relație" @@ -14659,6 +14655,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert este setat cu 0" +#, fuzzy +#~| msgid "Headers every %s rows" +#~ msgid "Headers every %s rows" +#~ msgstr "Capete de tabel la fiecare %s rânduri" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ru.po b/po/ru.po index 50a4ccf4fa..7a20c1f770 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-11 21:28+0200\n" "Last-Translator: Victor Volkov \n" "Language-Team: Russian %2$s msgstr[2] "%1$s соответствий в таблице %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Обзор" @@ -2450,14 +2451,14 @@ msgstr "Обзор" msgid "Delete the matches for the %s table?" msgstr "Удалить соответствия для таблицы %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Удалить" @@ -2519,41 +2520,32 @@ msgctxt "Last page" msgid "End" msgstr "Конец" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Начальная строка:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Количество строк:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Режим:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "горизонтальном" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "горизонтальном (повернутые заголовки)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вертикальном" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Заголовки каждые %s строк" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Сортировать по индексу" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2580,68 +2572,68 @@ msgstr "Сортировать по индексу" msgid "Options" msgstr "Параметры" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Сокращенные тексты" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Полные тексты" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Ссылочный ключ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Отображение связанного поля" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Показать бинарные данные" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Показать BLOB содержимое" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Показывать бинарные данные в виде HEX значений" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Скрыть преобразование" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Текст (WKT)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Бинарный (WKB)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Запись была удалена" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Завершить" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Может быть приблизительно. Смотрите [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "по запросу" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2650,21 +2642,21 @@ msgstr "" "Данное представление имеет, по меньшей мере, указанное количество строк. " "Пожалуйста, обратитесь к %sдокументации%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Отображает строки" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "всего" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Запрос занял %01.4f сек." -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2673,8 +2665,8 @@ msgstr "Запрос занял %01.4f сек." msgid "With selected:" msgstr "С отмеченными:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2685,45 +2677,45 @@ msgstr "С отмеченными:" msgid "Check All" msgstr "Отметить все" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Создать представление" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Использование результатов запроса" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Версия для печати" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Версия для печати (полностью)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Отобразить график" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Визуализация GIS данных" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Связь не найдена" @@ -2806,38 +2798,38 @@ msgstr "Индекс не определен!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индексы" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Уникальный" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Упакован" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Уникальных элементов" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Сравнение" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Комментарий" @@ -2870,14 +2862,14 @@ msgstr "Представление" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -2890,12 +2882,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Поиск" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Вставить" @@ -3025,15 +3017,15 @@ msgstr[2] "Добавлено %1$d строк." msgid "Error while creating PDF:" msgstr "Ошибка при создании PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Не удалось сохранить последнюю таблицу" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Недавние таблицы" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Отсутствуют недавние таблицы" @@ -3274,7 +3266,7 @@ msgid "Maximum rows to plot" msgstr "Максимальное количество строк для построения" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Обзор внешних значений" @@ -3681,7 +3673,7 @@ msgstr "Перечисление, выбор из списка определе msgid "Max: %s%s" msgstr "Максимальный размер: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL запрос:" @@ -3740,7 +3732,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Быстрая правка" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профилирование" @@ -3780,49 +3772,49 @@ msgstr "" msgid "Click to toggle" msgstr "Кликните для переключения" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Обзор вашего компьютера:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Выберите из каталога загрузки сервера %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Установленный каталог загрузки не доступен" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Файлы для загрузки отсутствуют" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Очистить" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Выполнить" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Печать" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Создание" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Последнее обновление" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Последняя проверка" @@ -3943,58 +3935,58 @@ msgstr "возможная уязвимость" msgid "numeric key detected" msgstr "определена числовая клавиша" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Вставить" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Тест" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Оба" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Нигде" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Налево" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Направо" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Клик" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Двойной клик" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Недоступно" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Открыт" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Закрыт" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4004,7 +3996,7 @@ msgstr "Закрыт" msgid "structure" msgstr "структура" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4014,7 +4006,7 @@ msgstr "структура" msgid "data" msgstr "данные" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4024,31 +4016,31 @@ msgstr "данные" msgid "structure and data" msgstr "структура и данные" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Быстро - отображать минимальный набор параметров" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "По выбору - отображать все возможные параметры" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "По выбору - как выше, но без выбора быстро/по выбору" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "полная вставка" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "расширенная вставка" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "оба верхних варианта" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "иначе, чем в вариантах выше" @@ -6178,8 +6170,8 @@ msgstr "" "При наличии выделенного имени пользователя, пропишите его здесь (изначально " "используется [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Пользователь" @@ -6602,7 +6594,7 @@ msgstr "База(ы) данных:" msgid "Table(s):" msgstr "Таблица(ы):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Строки:" @@ -7225,7 +7217,7 @@ msgid "No data found for GIS visualization." msgstr "Данные для визуализации GIS не найдены." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL вернула пустой результат (т.е. ноль строк)." @@ -7343,11 +7335,11 @@ msgstr "" "Для перемещения между полями значения, используйте клавишу TAB, либо CTRL" "+клавиши со стрелками - для свободного перемещения" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Отображает SQL-запрос" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Идентификатор вставленной строки: %1$d" @@ -7398,7 +7390,7 @@ msgstr "Добавить префикс таблицы" msgid "Add prefix" msgstr "Добавить префикс" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Вы действительно хотите выполнить данный запрос?" @@ -7621,16 +7613,16 @@ msgstr[0] "найден еще %s результат" msgstr[1] "найдено еще %s результата" msgstr[2] "найдено еще %s результатов" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "фильтровать базы данных по имени" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Очистить Быстрый Фильтр" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "фильтровать пункты по имени" @@ -7726,17 +7718,17 @@ msgid "Drop the database (DROP)" msgstr "Удалить базу данных (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Только структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структура и данные" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Только данные" @@ -8147,13 +8139,13 @@ msgstr "Поместить названия полей в первой стро #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Хост:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Время создания:" @@ -8167,7 +8159,7 @@ msgstr "Версия PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "База данных:" @@ -9296,7 +9288,7 @@ msgstr "Атрибуты" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Дополнительно" @@ -9459,7 +9451,7 @@ msgid "Library" msgstr "Библиотека" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версия" @@ -9932,69 +9924,292 @@ msgstr "" "отличаться от привилегий, используемых сервером, если они были изменены " "вручную. В таком случае необходимо %sперезагрузить привилегии%s." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Выделенный пользователь не был найден в таблице привилегий." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Был добавлен новый пользователь." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d секунда" +msgstr[1] "%d секунды" +msgstr[2] "%d секунд" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d минута" +msgstr[1] "%d минуты" +msgstr[2] "%d минут" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Статистика журналов" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Выбранный диапазон времени:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Выберите из какого журнала должна генерироваться статистика." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Результаты сгруппированы по тексту запроса." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Анализ запроса" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Инструкции мониторинга" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Мониторинг phpMyAdmin может помочь вам в оптимизации настройки сервера и " +"отслеживания долго выполняемых запросов. Для последнего, потребуется " +"установка log_output в 'TABLE' и включение директивы slow_query_log или " +"general_log. Будьте внимательны, включение general_log производит увеличение " +"хранимых данных и увеличивает нагрузку на сервер до 15%." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"К сожалению, ваш сервер баз данных не поддерживает сохранение журналов в " +"таблицу, что требуется для анализа журналов базы данных с помощью " +"phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " +"Однако, вы все еще можете использовать функции графиков сервера." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Использование мониторинга:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Ваш браузер начнет обновление всех отображаемых графиков через определенный " +"интервал времени. Вы можете добавлять графики и менять частоту обновления в " +"настройках, или удалить график используя соответствующую иконку на каждом из " +"них." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Для отображения запросов из журналов, выберите подходящий период времени на " +"любом графике нажав левую кнопку мышки и выделив его. После подтверждения, " +"будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " +"любые выражения SELECT, для их последующего анализа." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Примечание:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Включение директивы general_log может увеличить загрузку сервера на 5-15%. " +"Также, имейте в виду, что генерирование статистики из журналов является " +"тяжелой, загружающей задачей для сервера, поэтому советуем выбирать только " +"небольшие промежутки времени, а так же отключать general_log и очищать его " +"таблицу, когда мониторинг больше не требуется." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Добавить график" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Заготовки графиков" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Переменные состояния" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Выберите серии:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Частый мониторинг" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "или задайте имя переменной:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Отобразить в виде значения разницы" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Применить делитель" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Добавить к значениям единицу измерения" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Добавить данные серии" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Очистить серии" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Серии в графике:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Запустить монитор" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Инструкции/Настройки" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Завершено редактирование графиков" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Включить подсветку" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Частота обновления" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Столбцы графика" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Расположение гарфика" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Расположения графиков сохраняются в локальном хранилище браузера. При " +"наличии сложной настройки, вы можете осуществить ее экспорт." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Восстановить изначальное значение" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Результат SQL-запроса" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Создан:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Размер возрастания файла данных" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Другое" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Начало" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Полное время:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Время" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Закрыть" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Время" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Создание закладки" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Метка:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Доступна для всех пользователей" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10013,10 +10228,6 @@ msgstr "Очистить" msgid "Bookmark this SQL query:" msgstr "Создание закладки SQL запроса:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Доступна для всех пользователей" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Заменить существующую с таким же именем" @@ -10155,7 +10366,7 @@ msgstr "Отметить требующие оптимизации" msgid "Sort" msgstr "Отсортировать" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Нет" @@ -10311,7 +10522,7 @@ msgstr "Эффективность" msgid "Table %1$s has been altered successfully" msgstr "Таблица %1$s была успешно изменена" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Ошибка запроса" @@ -10464,7 +10675,7 @@ msgstr "" "Неисправимая ошибка: Панель навигации может быть доступна только с помощью " "AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Изменения сохранены" @@ -10520,7 +10731,7 @@ msgstr "Обратное отображение" msgid "Toggle relation lines" msgstr "Переключение линий связи" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Импорт/экспорт координат таблиц в/из PDF-схемы" @@ -10578,39 +10789,39 @@ msgstr "Объединение" msgid "Active options" msgstr "Активные параметры" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Страница успешно создана" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Ошибка создания страницы" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Страница:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Импортировать с выбранной страницы" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Экспортировать на выбранную страницу" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Создать страницу и экспортировать в нее" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Название новой страницы: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Экспорт/Импорт на шкалу:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "рекомендуемый" @@ -10638,7 +10849,7 @@ msgstr "Добавлена внутренняя связь" msgid "Relation deleted" msgstr "Связь удалена" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Ошибка сохранения координат." @@ -11087,216 +11298,6 @@ msgstr "" "к исходным настройкам, если не было замечено положительного улучшения в " "работе." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Инструкции мониторинга" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Мониторинг phpMyAdmin может помочь вам в оптимизации настройки сервера и " -"отслеживания долго выполняемых запросов. Для последнего, потребуется " -"установка log_output в 'TABLE' и включение директивы slow_query_log или " -"general_log. Будьте внимательны, включение general_log производит увеличение " -"хранимых данных и увеличивает нагрузку на сервер до 15%." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"К сожалению, ваш сервер баз данных не поддерживает сохранение журналов в " -"таблицу, что требуется для анализа журналов базы данных с помощью " -"phpMyAdmin. Сохранение журналов в таблицу поддерживается MySQL 5.1.6 и выше. " -"Однако, вы все еще можете использовать функции графиков сервера." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Использование мониторинга:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Для отображения запросов из журналов, выберите подходящий период времени на " -"любом графике нажав левую кнопку мышки и выделив его. После подтверждения, " -"будет загружена таблица сгруппированных запросов, где вы сможете кликнуть на " -"любые выражения SELECT, для их последующего анализа." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Примечание:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Включение директивы general_log может увеличить загрузку сервера на 5-15%. " -"Также, имейте в виду, что генерирование статистики из журналов является " -"тяжелой, загружающей задачей для сервера, поэтому советуем выбирать только " -"небольшие промежутки времени, а так же отключать general_log и очищать его " -"таблицу, когда мониторинг больше не требуется." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Добавить график" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Заготовки графиков" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Переменные состояния" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Выберите серии:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Частый мониторинг" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "или задайте имя переменной:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Отобразить в виде значения разницы" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Применить делитель" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Добавить к значениям единицу измерения" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Добавить данные серии" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Очистить серии" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Серии в графике:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Статистика журналов" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Выбранный диапазон времени:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Выполнять только выражения SELECT,INSERT,UPDATE и DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Для лучшей группировки, удалить данные переменной в запросах INSERT" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Выберите из какого журнала должна генерироваться статистика." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Результаты сгруппированы по тексту запроса." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Анализ запроса" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d секунда" -msgstr[1] "%d секунды" -msgstr[2] "%d секунд" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d минута" -msgstr[1] "%d минуты" -msgstr[2] "%d минут" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Запустить монитор" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Инструкции/Настройки" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Завершено редактирование графиков" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Включить подсветку" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Частота обновления" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Столбцы графика" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Расположение гарфика" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Восстановить изначальное значение" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12421,24 +12422,24 @@ msgstr "Ключ должен содержать символы алфавита msgid "Wrong data" msgstr "Ошибочные данные" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Для обзора данных использован запрос из закладки \"%s\"." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Закладка не создана" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Отображает как PHP-код" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "SQL синтаксис проверен" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12450,19 +12451,11 @@ msgstr "" "Данная таблица не содержит уникального столбца. Изменение сетки, выставление " "галочки, редактирование, копирование и удаление не доступно." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблемы с индексами таблицы `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Создание закладки" - -#: sql.php:1191 -msgid "Label:" -msgstr "Метка:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Данные не найдены" @@ -12538,6 +12531,10 @@ msgstr "Значения X" msgid "Y-Axis label:" msgstr "Подпись для оси Y:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Начальная строка:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12668,31 +12665,31 @@ msgstr "Выбор отображаемого столбца:" msgid "No column selected." msgstr "Не выбран столбец." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Отчёт слежения для таблицы `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Версия %1$s создана, отслеживание %2$s включено." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Слежение за %1$s было выключено на версии %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Слежение за %1$s было включено на версии %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Выполненные SQL запросы." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12701,113 +12698,113 @@ msgstr "" "временную базу данных. Убедитесь, что у вас есть для этого достаточные " "привилегии." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Закомментируйте эти две строки, если они вам не нужны." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL выражения успешно выгружены; скопируйте, либо выполните их." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Обзор версии %s (SQL код)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Данные слежения успешно удалены" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Данные слежения успешно удалены" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Отслеживаемые выражения" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Вывести %1$s с датой от %2$s до %3$s пользователя %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Удалить строку данных слежения за таблицей" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Нет данных" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Выражение определяющее структуру" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Выражение изменяющее данные" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Выгрузка SQL (файл)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Выгрузка SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Данный параметр заместит таблицу и содержащиеся в ней данные." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Выполнение SQL запроса" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Экспортировать как %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Показать версии" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Выключить слежение за %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Выключить" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Включить слежение за %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Включить" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Создать версию %1$s из %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Отслеживать выражения определяющие структуру:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Отслеживать выражения изменяющие данные:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Создать версию" @@ -14152,6 +14149,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert установлен в 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Заголовки каждые %s строк" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/si.po b/po/si.po index ed511365a7..8ac9cda3fc 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-11 14:58+0200\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala %2$s තුල ගැලපීම් %1$s කි" msgstr[1] "%2$s තුල ගැලපීම් %1$s කි" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "පිරික්සන්න" @@ -2401,14 +2402,14 @@ msgstr "පිරික්සන්න" msgid "Delete the matches for the %s table?" msgstr "%s වගුව තුල ගැලපීම් ඉවත් කරන්නද?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "ඉවත් කරන්න" @@ -2470,41 +2471,32 @@ msgctxt "Last page" msgid "End" msgstr "අවසන" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "ආරම්භක පේළිය:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "පේළි ගණන:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "ප්රකාරය:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "තිරස්" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "තිරස් (rotated headers)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "සිරස්" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "ශීර්ෂක, පේළි %s කට වරක්" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "යතුර අනුව තෝරන්න" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2531,68 +2523,68 @@ msgstr "යතුර අනුව තෝරන්න" msgid "Options" msgstr "විකල්ප" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "අර්ධ පෙළ" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "පූර්ණ පෙළ" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "සබැඳි යතුර" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "සබැඳි දර්ශන තීරය" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "ද්වීමය දත්ත පෙන්වන්න" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB දත්ත පෙන්වන්න" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "ද්වීමය දත්ත HEX ලෙස පෙන්වන්න" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "බ්රව්සර රූපාන්තරනය සඟවන්න" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Well Known Text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "පේළිය ඉවත් කරන ලදි" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "නවතා දමන්න" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "සමහර විට ආසන්න වශයෙන්. [doc@faq3-11]FAQ 3.11[/doc] බලන්න" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "විමසුම තුල" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2600,21 +2592,21 @@ msgid "" msgstr "" "මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "පේළි පෙන්වමින්" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "මුළු එකතුව" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2623,8 +2615,8 @@ msgstr "විමසුම තත්පර %01.4f ගන්නා ලදි" msgid "With selected:" msgstr "තෝරාගත්:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2635,45 +2627,45 @@ msgstr "තෝරාගත්:" msgid "Check All" msgstr "සියල්ල කතිර කොටුගත කරන්න" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "අපනයනය" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "විමසුම් ප්රථිඵල සඳහා මෙහෙයුම්" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "මුද්රණ දර්ශනය" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "මුද්රණ දර්ශනය (පූර්ණ පෙළ සමඟින්)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "ප්රස්තාරගත කරන්න" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "ජ්යාමිතික දත්ත නිරූපණය" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "සබැඳිය හමු නොවිණි" @@ -2748,38 +2740,38 @@ msgstr "සුචියක් අර්ථදක්වා නැත!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "සූචියන්" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "අනන්ය" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "අහුරන ලද" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "අනේකත්වය" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "පරිතුලනය" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "ටීකාව" @@ -2812,14 +2804,14 @@ msgstr "දසුන" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "සැකිල්ල" @@ -2832,12 +2824,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "සෙවීම" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "ඇතුල් කරන්න" @@ -2964,15 +2956,15 @@ msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි." msgid "Error while creating PDF:" msgstr "PDF සැදීමේදී දෝෂ:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "මෑතදී භාවිතා කල වගු සුරැකීම අසමත් විය" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "මෑතදී භාවිතා කල වගු" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "මෑතදී භාවිතා කල වගු කිසිවක් නොමැත" @@ -3212,7 +3204,7 @@ msgid "Maximum rows to plot" msgstr "උපරිම තීර ගණන" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "අන්ය අගයන් පිරික්සන්න" @@ -3599,7 +3591,7 @@ msgstr "අර්ථදක්වන ලද අගයන් අඩංගු ල msgid "Max: %s%s" msgstr "උපරිම: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL විමසුම:" @@ -3658,7 +3650,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "පේළිගත" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3697,49 +3689,49 @@ msgstr "%s විශේෂාංගයෙහි හඳුනාගත් දෝ msgid "Click to toggle" msgstr "මාරු කිරීමට ක්ලික් කරන්න" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "පරිගණකය තුළ පිරික්සන්න:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "වෙබ් සේවාදායකයේ %s උඩුගත කිරීම් ඩිරෙක්ටරියෙන් තෝරන්න:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "අප්ලෝඩ් කිරීම් සඳහා සැකසූ ඩිරෙක්ටරිය වෙත පිවිසිය නොහැක" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැත" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "හිස් කරන්න" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "ක්රියාත්මක කරන්න" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "මුද්රණය කරන්න" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "සෑදීම" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "අවසන් යාවත්කාලීන කිරීම" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "අවසන් පරීක්ෂාව" @@ -3855,54 +3847,54 @@ msgstr "විය හැකි අයුතු ප්රයෝජන ගැ msgid "numeric key detected" msgstr "සංඛ්යාත්මක යතුරක් අනාවරණය වුණි" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "අයිකන" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "පෙළ" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "දෙකම" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "කොහේවත් නැත" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "වම" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "දකුණ" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "ක්ලික් කිරීමෙන්" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "ද්විත්ව ක්ලික් කිරීමෙන්" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "අක්රිය" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "විවෘත" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "වසන ලද" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3912,7 +3904,7 @@ msgstr "වසන ලද" msgid "structure" msgstr "සැකිල්ල" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3922,7 +3914,7 @@ msgstr "සැකිල්ල" msgid "data" msgstr "දත්ත" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3932,31 +3924,31 @@ msgstr "දත්ත" msgid "structure and data" msgstr "සැකිල්ල සහ දත්ත" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "අභිමත - ඉහත මෙන්, නමුත් අභිමත/කඩිනම් තෝරාගැනීම් නොමෙතිව" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "සම්පූර්ණ ඇතුළු කිරීම්" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "විස්තෘත ඇතුළු කිරීම්" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ඉහත ද්විත්වයම" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ඉහත එක් වර්ගයක්වත් නොව" @@ -5995,8 +5987,8 @@ msgstr "" "ඔබට සාදා ගත් භාවිත නාමයක් ඇත්නම් එය මෙහි සඳහන් කරන්න (නැත්නම් පෙරනිමි අගය වන " "[kbd]anonymous[/kbd] භාවිතා කෙරේ)" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "භාවිත නාමය" @@ -6394,7 +6386,7 @@ msgstr "දත්තගබඩා(ව):" msgid "Table(s):" msgstr "වගු(ව):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "පේළි:" @@ -6966,7 +6958,7 @@ msgid "No data found for GIS visualization." msgstr "ජ්යාමිතික නිරූපණයට දත්ත කිසිවක් හමු නොවිණි." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL හිස් ප්රතිඵල කුලකයක් (පේළි කිසිවක් අඩංගු නොවන) සපයන ලදි." @@ -7082,11 +7074,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL විමසුම පෙන්වමින්" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "%1$d පේළිය ඇතුල් කරන ලදි" @@ -7131,7 +7123,7 @@ msgstr "වගු නාම මූලයක් එක් කරන්න:" msgid "Add prefix" msgstr "නාම මූලයක් එක් කරන්න" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "පහත විමසුම ක්රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්යද?" @@ -7353,16 +7345,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "දත්තගබඩා නමින් පෙරහන්න" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "පෙරහන ප්රත්යාරම්භ කරන්න" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "අයිතම නමින් පෙරහන්න" @@ -7458,17 +7450,17 @@ msgid "Drop the database (DROP)" msgstr "දත්තගබඩාව හලන්න. (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "සැකිල්ල පමණයි" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "සැකිල්ල සහ දත්ත" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "දත්ත පමණයි" @@ -7880,13 +7872,13 @@ msgstr "තීර නම් පළමු පේළියේ යොදන්න:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "දායකයා:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "උත්පාදන වේලාව:" @@ -7900,7 +7892,7 @@ msgstr "PHP අනුවාදය:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "දත්තගබඩාව:" @@ -8993,7 +8985,7 @@ msgstr "ගුණාංග" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "අතිරේක" @@ -9154,7 +9146,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "අනුවාදය" @@ -9602,63 +9594,282 @@ msgstr "" "සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට " "වඩා වෙනස් විය හැකිය. එවැනි අවස්ථාවක ඔබ %sවරප්රසාද පූරණය%s කල යුතුය." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "තෝරාගත් භාවිත කරන්නා වරප්රසාද වගුවේ හමු නොවිණි." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "ඔබ නව භාවිතා කරන්නනෙක් එක් කරන ලදි." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "තත්පර %dක්" +msgstr[1] "තත්පර %dක්" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "මිනිත්තු %dක්" +msgstr[1] "මිනිත්තු %dක්" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "ලොග සංඛ්යලේඛන" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "තෝරාගත් කාල පරාසය:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්රකාශ පමණක් ලබාගන්න" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්රකාශ වල අඩංගු විචල්ය දත්ත ඉවත් කරන්න" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "සංඛ්යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "ප්රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "විමසුම් විශ්ලේශකය" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"ඔබගේ සේවාදායකයේ වින්යාසයන් ප්රශස්ත කිරීමටත් වැඩි කාලයක් ගතවන විමසුම් හඳුනා ගැනීමටත් ඔබට " +"phpMyAdmin අධීක්ෂකය යොදාගත හැක. දෙවැන්න සඳහා log_output හි අගය TABLE ලෙස සිටුවීමත් " +"slow_query_log, general_log යන දෙකෙන් එකක් සක්රීය කිරීමත් අවශ්ය වේ. කෙසේ වෙතත් " +"general_log ය ඉතා විශාල දත්ත ප්රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " +"15% දක්වා ඉහල යා හැකි බව සලකන්න" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"phpMyAdmin මඟින් දත්තගබඩා ලොගයන් විශ්ලේෂණය කිරීම සඳහා අත්යාවශ්ය අංගයක් වන වගුවක් තුලට දත්ත " +"ලොගගත කිරීමේ හැකියාව ඔබගේ දත්තගබඩා සේවාදායකයේ නොමැත. වගුවක් තුලට දත්ත ලොගගත කිරීම " +"MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්රස්ථාර විශේෂාංග " +"භාවිතා කල හැක." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "අධීක්ෂකය භාවිතා කිරීම:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"ඔබගේ බ්රව්සරය විසින් නියමිත කාලාන්තරයකට වරක් සියලුම ප්රස්ථාර යාවත්කාලීන කෙරෙනු ඇත. ඔබට " +"ප්රස්ථාර එකතු කිරීම, 'සිටුවම්' භාවිතා කරමින් යාවත්කාලීන කරන වේගය වෙනස් කිරීම හෝ අදාල ප්රස්ථාරය " +"මත ඇති අයිකනය භාවිතා කර ඕනෑම ප්රස්ථාරයක් ඉවත් කිරීම සිදු කල හැක." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"ලොගයේ ඇතුලත් විමසුම් පරීක්ෂා කිරීම සඳහා ප්රස්තාරය මත වම් මූසික බොත්තම පහලට ඔබාගෙන තිරස් අතට " +"ඇදීමෙන් අදාල කාල පරාසය තෝරන්න. සනාත කිරීමකින් අනතුරුව සමූහනය කරන ලද විමසුම් ඇතුලත් වගුවක් " +"පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " +"හැක." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "කරුණාවෙන් සලකන්න:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log සක්රීය කිරීම සේවාදායකය මත භාරය 5-15% අතර ප්රමාණයකින් වැඩි කරයි. එමෙන්ම " +"ලොගගත දත්ත මගින් සංඛ්යාලේඛන උත්පාදනය කිරීම අධික භාරයක් ගෙනදෙන කාර්යයක් බව සලකන්න. එම නිසා " +"මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්ය නොවන විට general_log " +"අක්රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "ප්රස්ථාර එක් කරන්න" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "පෙරසැදි ප්රස්ථාර" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "තත්ව විචල්ය(ය)" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "ශ්රේණිය තෝරන්න:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "සාමාන්යයෙන් අධීක්ෂණය කරනු ලබන" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "හෝ විචල්ය නාමය යතුරු කරන්න:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "භාජකයක් භාවිතා කරන්න" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "මෙම ශ්රේණිය එක් කරන්න" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "ශ්රේණිය ඉවත් කරන්න" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "ප්රස්ථාරයේ ශ්රේණි:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "අධීක්ෂණය අරඹන්න" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "උපදෙස්/පිහිටුවීම" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "ප්රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "ඉස්මතු කිරීම සක්රීය කරන්න" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "යාවත්කාලීන කිරීමේ ශ්රීඝ්රතාව" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "ප්රස්ථාරයේ තීර" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "ප්රස්ථාර සැකසුම" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"ප්රස්ථාර සැකැස්ම බ්රවුසරයේ ගබඩාවේ ගබඩා කර ඇත. සංකීර්ණ වූ සැකැස්මක් ඇත්නම් ඔබට එය අපනයනය " +"කර ගැනීමට අවශ්ය විය හැකිය." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "පෙරනිමි අගයන් පිහිටුවන්න" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL ප්රතිළුල" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "උත්පාදනය කරන ලද්දේ:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "දත්ත ගොනු" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "අනෙකුත්" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "අරඹන්න" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "මුළු කාලය" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% කාලය" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "වසන්න" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø කාලය" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "ලේබලය:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9677,10 +9888,6 @@ msgstr "මකන්න" msgid "Bookmark this SQL query:" msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "එකම නම ඇති පොත් සලකුණ ප්රතිස්ථාපනය කරන්න" @@ -9806,7 +10013,7 @@ msgstr "පිරිවැයක් සහිත වගු පරීක්ෂා msgid "Sort" msgstr "සුබෙදන්න" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "කිසිවක් නැත" @@ -9960,7 +10167,7 @@ msgstr "එලදායී" msgid "Table %1$s has been altered successfully" msgstr "%1$s වගුව සාර්ථකව වෙනස් කරන ලදි" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "විමසුම් දෝෂය" @@ -10107,7 +10314,7 @@ msgstr "ZIP ආරක්ෂණයේ දෝෂයක් ඇත:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "වෙනස් කිරීම් සුරකින ලදි" @@ -10163,7 +10370,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "සබඳතා දක්වන ඉරි පෙන්වන්න/සඟවන්න" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10222,41 +10429,41 @@ msgstr "එකතු කරන්න" msgid "Active options" msgstr "සක්රිය විකල්ප" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "පිටුව සාදන ලදි" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "පිටුව සෑදීම අසමත් විය" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "පිටුව:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "තෝරාගත් පිටු ආනයනය කරන්න" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "පිටුවක් සාදා අපනයනය කරන්න" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "නව පිටු නාමය: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export to selected page" msgid "Export/Import to scale:" msgstr "තෝරාගත් පිටු අපනයනය කරන්න" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10284,7 +10491,7 @@ msgstr "අභ්යන්තර සබඳතා එක් කරන ලද msgid "Relation deleted" msgstr "සම්බන්දතාවය ඉවත් කරන ලදී" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10716,212 +10923,6 @@ msgstr "" "දත්තගබඩාව නිරීක්ෂණය කිරීම හා පෙර අවස්ථා සමග සසැදීමත්, මැනිය හැකි වර්ධනයක් ගෙන නොදෙන වෙනස් " "කිරීම් ප්රතිවර්තනය කිරීමත් ය." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "අධීක්ෂකය පිලිබඳ උපදෙස්" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"ඔබගේ සේවාදායකයේ වින්යාසයන් ප්රශස්ත කිරීමටත් වැඩි කාලයක් ගතවන විමසුම් හඳුනා ගැනීමටත් ඔබට " -"phpMyAdmin අධීක්ෂකය යොදාගත හැක. දෙවැන්න සඳහා log_output හි අගය TABLE ලෙස සිටුවීමත් " -"slow_query_log, general_log යන දෙකෙන් එකක් සක්රීය කිරීමත් අවශ්ය වේ. කෙසේ වෙතත් " -"general_log ය ඉතා විශාල දත්ත ප්රමාණයක් උත්පාදනය කරන බව සහ එමගින් සේවාදායකය මත භාරය " -"15% දක්වා ඉහල යා හැකි බව සලකන්න" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"phpMyAdmin මඟින් දත්තගබඩා ලොගයන් විශ්ලේෂණය කිරීම සඳහා අත්යාවශ්ය අංගයක් වන වගුවක් තුලට දත්ත " -"ලොගගත කිරීමේ හැකියාව ඔබගේ දත්තගබඩා සේවාදායකයේ නොමැත. වගුවක් තුලට දත්ත ලොගගත කිරීම " -"MySQL 5.1.6 හෝ පසු අනුවාදයක සිදු කල හැක. කෙසේ නමුත් ඔබට සේවාදායකයේ ප්රස්ථාර විශේෂාංග " -"භාවිතා කල හැක." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "අධීක්ෂකය භාවිතා කිරීම:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"ලොගයේ ඇතුලත් විමසුම් පරීක්ෂා කිරීම සඳහා ප්රස්තාරය මත වම් මූසික බොත්තම පහලට ඔබාගෙන තිරස් අතට " -"ඇදීමෙන් අදාල කාල පරාසය තෝරන්න. සනාත කිරීමකින් අනතුරුව සමූහනය කරන ලද විමසුම් ඇතුලත් වගුවක් " -"පූරණය කෙරෙනු ඇත. එහි ඇතුලත් ඕනෑම SELECT ප්රකාශයක් ක්ලික් කිරීමෙන් එය තවදුරටත් විශ්ලේෂණය කල " -"හැක." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "කරුණාවෙන් සලකන්න:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log සක්රීය කිරීම සේවාදායකය මත භාරය 5-15% අතර ප්රමාණයකින් වැඩි කරයි. එමෙන්ම " -"ලොගගත දත්ත මගින් සංඛ්යාලේඛන උත්පාදනය කිරීම අධික භාරයක් ගෙනදෙන කාර්යයක් බව සලකන්න. එම නිසා " -"මේ සඳහා කුඩා කාල පරාසයක් තෝරා ගැනීමද අධීක්ෂණය තවදුරටත් අවශ්ය නොවන විට general_log " -"අක්රීය කිරීම හා ඊට අයත් වගුව හිස් කිරීම ද නිර්දේශිතය." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "ප්රස්ථාර එක් කරන්න" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "පෙරසැදි ප්රස්ථාර" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "තත්ව විචල්ය(ය)" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "ශ්රේණිය තෝරන්න:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "සාමාන්යයෙන් අධීක්ෂණය කරනු ලබන" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "හෝ විචල්ය නාමය යතුරු කරන්න:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "ආන්තර අගයන් ලෙස පෙන්වන්න" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "භාජකයක් භාවිතා කරන්න" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "දත්ත අගයන් සඳහා ඒකකයක් එක් කරන්න" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "මෙම ශ්රේණිය එක් කරන්න" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "ශ්රේණිය ඉවත් කරන්න" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "ප්රස්ථාරයේ ශ්රේණි:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "ලොග සංඛ්යලේඛන" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "තෝරාගත් කාල පරාසය:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "SELECT,INSERT,UPDATE සහ DELETE ප්රකාශ පමණක් ලබාගන්න" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "වඩා හොඳ සමූහනයන් සඳහා INSERT ප්රකාශ වල අඩංගු විචල්ය දත්ත ඉවත් කරන්න" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "සංඛ්යාලේඛන උත්පාදනය කල යුත්තේ කුමන ලොගයෙන් දැයි තෝරන්න." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "ප්රතිඵල විමසුම් පෙළ මගින් සමූහනය කර ඇත." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "විමසුම් විශ්ලේශකය" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "තත්පර %dක්" -msgstr[1] "තත්පර %dක්" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "මිනිත්තු %dක්" -msgstr[1] "මිනිත්තු %dක්" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "අධීක්ෂණය අරඹන්න" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "උපදෙස්/පිහිටුවීම" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "ප්රස්ථාර වෙනස් කර/අනුපිලිවෙල සකස්කර අවසානයි" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "ඉස්මතු කිරීම සක්රීය කරන්න" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "යාවත්කාලීන කිරීමේ ශ්රීඝ්රතාව" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "ප්රස්ථාරයේ තීර" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "ප්රස්ථාර සැකසුම" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "පෙරනිමි අගයන් පිහිටුවන්න" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11853,24 +11854,24 @@ msgstr "මූලයේ අක්ෂර, ඉලක්කම් [em]සහ[/em] msgid "Wrong data" msgstr "වැරදි දත්ත" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "\"%s\" පොත් සලකුණ පිරික්සීම සඳහා වූ පෙරනිමි SQL විමසුම ලෙස යොදා ගනිමින්." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "පොත් සලකුණ නොසාදන ලදි" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP කේත ලෙස පෙන්වමින්" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "තහවුරු කරන ලද SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -11882,19 +11883,11 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්රියා විරහිත වනු ඇත." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න" - -#: sql.php:1191 -msgid "Label:" -msgstr "ලේබලය:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "පෙන්වීම සඳහා දත්ත නොමැත" @@ -11970,6 +11963,10 @@ msgstr "X අගයන්" msgid "Y-Axis label:" msgstr "Y-අක්ෂයේ ලේබලය:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "ආරම්භක පේළිය:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12104,143 +12101,143 @@ msgstr "පෙන්වීම සඳහා තීරය තෝරාගන් msgid "No column selected." msgstr "පේළි කිසිවක් තෝරගෙන නැත" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` වගුව සඳහා අවධානය පිළිබඳ වාර්තාව" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%1$s වන අනුවාදය සාදන ලදි. %2$s සඳහා අවධානය සක්රීයයි." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය අක්රීය කරන ලදී." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%2$s වන අනුවාදයේදී %1$s සඳහා අවධානය සක්රීය කරන ලදී." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL ය ක්රියාත්මක කරන ලදි." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s වන අනුවාදයේ සැණරුව (SQL කේත)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "%1$s පෙන්වන්න, %2$s දින සිට %3$s දින දක්වා %4$s %5$s භාවිතා කරන්නා විසින්" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "අවධානය පිළිබඳ දත්ත පේළිය වාර්තාවෙන් ඉවත් කරන්න" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "දත්ත නොමැත" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "දිනය" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "දත්ත අර්ථ දැක්වීම" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "මෙම විකල්පය මගින් ඔබගේ වගුව සහ දත්ත ප්රතිස්ථාපනය කෙරෙනු ඇත." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL ක්රියාත්මක කිරීම" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "අපනයන කරන්න %s ලෙස" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "අනුවාද පෙන්වන්න" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s සඳහා අවධානය අක්රීය කරන්න" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "අක්රීය කරන්න" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s සඳහා අවධානය සක්රීය කරන්න" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "සක්රීය කරන්න" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "%2$s හි %1$s වන අනුවාදය සාදන්න" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "අනුවාදය සාදන්න" @@ -13431,6 +13428,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert ශුන්යයට සිටුවා ඇත" +#~ msgid "Headers every %s rows" +#~ msgstr "ශීර්ෂක, පේළි %s කට වරක්" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/sk.po b/po/sk.po index 2014742e03..6965d78f4a 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-11 16:36+0200\n" "Last-Translator: Peter Rosa \n" "Language-Team: Slovak %2$s" msgstr[2] "%1$s výskytov v %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Prechádzať" @@ -2482,14 +2483,14 @@ msgstr "Prechádzať" msgid "Delete the matches for the %s table?" msgstr "Odstrániť nájdené záznamy z tabuľky %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Zmazať" @@ -2551,45 +2552,34 @@ msgctxt "Last page" msgid "End" msgstr "Koniec" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Prvý riadok" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Počet riadkov:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Režim" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontálnom" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vodorovnom (otočené hlavičky)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikálnom" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Opakovať hlavičku každých %s riadkov" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Zoradiť podľa kľúča" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2616,68 +2606,68 @@ msgstr "Zoradiť podľa kľúča" msgid "Options" msgstr "Nastavenia" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Čiastočné texty" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Plné texty" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relačný kľúč" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relačné zobrazenie stĺpcov" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Zobraziť binárny obsah" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Zobraziť obsah BLOBu" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Zobraziť binárny obsah v HEX formáte" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Skryť transformácie prehliadača" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Text (Well Known Text)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Well Known Binary" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Riadok bol zmazaný" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Zabiť" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Môže byť nepresné. Viď [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "v dopyte" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2685,21 +2675,21 @@ msgid "" msgstr "" "Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Zobrazené riadky" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "celkovo" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Dopyt zabral %01.4f s" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2708,8 +2698,8 @@ msgstr "Dopyt zabral %01.4f s" msgid "With selected:" msgstr "Výber:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2720,45 +2710,45 @@ msgstr "Výber:" msgid "Check All" msgstr "Označiť všetko" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportovať" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Vytvoriť pohľad" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operácie s výsledkami dopytu" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Náhľad k tlači" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Náhľad tlače (s kompletnými textami)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Zobraziť graf" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Zobraziť GIS data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Odkaz nebol nájdený" @@ -2837,38 +2827,38 @@ msgstr "Nebol definovaný žiadny index!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indexy" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikátny" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Zabalené" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Mohutnosť" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Zotriedenie" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentár" @@ -2903,14 +2893,14 @@ msgstr "Pohľad" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Štruktúra" @@ -2923,12 +2913,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Hľadať" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Vložiť" @@ -3058,15 +3048,15 @@ msgstr[2] "Bolo vložených %1$d riadkov." msgid "Error while creating PDF:" msgstr "Chyba pri vytváraní PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nepodarilo sa uložiť najnovšíu tabuľku" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Nedávne tabuľky" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Neboli nájdené žiadne nedávne tabuľky" @@ -3310,7 +3300,7 @@ msgid "Maximum rows to plot" msgstr "Maximálny počet zobrazených riadkov" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Prejsť hodnoty cudzích kľúčov" @@ -3710,7 +3700,7 @@ msgstr "Vymenovanie hodnôt vybratých zo zoznamu definovaných hodnôt" msgid "Max: %s%s" msgstr "Maximálna veľkosť: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3771,7 +3761,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Upraviť tu" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilovanie" @@ -3810,49 +3800,49 @@ msgstr "Funkčnosť %s je ovplyvnená známou chybou, pozri %s" msgid "Click to toggle" msgstr "Kliknite pre prepnutie" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Prechádzať váš počítač:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Zvoľte súbor z upload adresára %s web servera:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Adresár určený pre upload súborov sa nedá otvoriť" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Žiadny súbor pre nahrávanie" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Vyprázdniť" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Spustiť" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Vytlačiť" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Vytvorenie" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Posledná zmena" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Posledná kontrola" @@ -3971,58 +3961,58 @@ msgstr "možný pokus o exploit" msgid "numeric key detected" msgstr "zistený číselný kľúč" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Vložiť" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Kontrola" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Obidva" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nikde" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Vľavo" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Vpravo" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klik" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dvojklik" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Vypnuté" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Otvorené" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Zatvorené" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4032,7 +4022,7 @@ msgstr "Zatvorené" msgid "structure" msgstr "štruktúra" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4042,7 +4032,7 @@ msgstr "štruktúra" msgid "data" msgstr "dáta" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4052,31 +4042,31 @@ msgstr "dáta" msgid "structure and data" msgstr "štruktúra a dáta" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Vlastný - zobrazí všetky voľby nastavenia" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "úplné vloženia" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "rozšírené vkladania" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "obidve vyššie uvedené" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "žiadny z vyššie uvedených" @@ -6195,8 +6185,8 @@ msgstr "" "Pokiaľ máte vlastné užívateľské meno, zadajte ho tu (východzie " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Užívateľ" @@ -6612,7 +6602,7 @@ msgstr "Databáza(y):" msgid "Table(s):" msgstr "Tabuľka(y):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Riadky:" @@ -7209,7 +7199,7 @@ msgid "No data found for GIS visualization." msgstr "Neboli nájdené žiadne dáta pre GIS vizualizáciu." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)." @@ -7329,11 +7319,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Zobrazujem SQL dotaz" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7384,7 +7374,7 @@ msgstr "Pridať prefix" msgid "Add prefix" msgstr "Pridať prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Skutočne chcete vykonať nasledovný príkaz?" @@ -7607,16 +7597,16 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrovať databázy podľa mena" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrovať položky podľa mena" @@ -7714,17 +7704,17 @@ msgid "Drop the database (DROP)" msgstr "Odstrániť databázu (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Iba štruktúru" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Štruktúru a dáta" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Iba dáta" @@ -8146,7 +8136,7 @@ msgstr "Pridať názvy polí na prvý riadok" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8154,7 +8144,7 @@ msgstr "Hostiteľ" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8172,7 +8162,7 @@ msgstr "Verzia PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9257,7 +9247,7 @@ msgstr "Atribúty" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9422,7 +9412,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verzia" @@ -9892,71 +9882,268 @@ 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ť." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Zvolený používateľ nebol nájdený v tabuľke práv." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Používateľ bol pridaný." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundy" +msgstr[2] "%d sekúnd" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minúta" +msgstr[1] "%d minúty" +msgstr[2] "%d minút" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Zvolený časový rozsah:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analyzátor dopytov" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Monitor inštrukcie" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Pridať graf" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Vybrať série:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "alebo zadajte meno premennej:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Pridať túto sériu" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Série v grafe:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Spustiť monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Pokyny/Nastavenie" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Povoliť presúvanie grafov" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Obnovovacia frekvencia" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Stĺpce grafu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Obnoviť predvolené" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Výsledok SQL dopytu" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Vygenerované" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Súbory s dátami" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostatné" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Začiatok" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Celkový čas:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Čas" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zavrieť" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Čas" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Pridať tento SQL dopyt do obľúbených" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Názov" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dovoliť používať túto položku všetkým používateľom" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9977,10 +10164,6 @@ msgstr "Vyčistiť" msgid "Bookmark this SQL query:" msgstr "Pridať tento SQL dopyt do obľúbených" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dovoliť používať túto položku všetkým používateľom" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Prepísať existujúci príkaz s rovnakým menom" @@ -10120,7 +10303,7 @@ msgstr "Zvoliť neoptimálne" msgid "Sort" msgstr "Triediť" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Žiadny" @@ -10274,7 +10457,7 @@ msgstr "Efektívny" msgid "Table %1$s has been altered successfully" msgstr "Tabuľka %1$s bola úspešné upravená" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Chyba dopytu" @@ -10427,7 +10610,7 @@ msgstr "Chyba v ZIP archíve:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Zmeny boli uložené" @@ -10483,7 +10666,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Prepnúť príbuzné riadky" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Import/Export koordináty pre PDF schému" @@ -10543,43 +10726,43 @@ msgstr "Zlúčiť" msgid "Active options" msgstr "Zapnuté parametre" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Stránka bola vytvorená" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Stránka" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importovať zo zvolenej stránky" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Vytvoriť novú stránku a exportovať do nej" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nový názov stránky: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export to selected page" msgid "Export/Import to scale:" msgstr "Exportovať na zvolenú stránku" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10607,7 +10790,7 @@ msgstr "Bol pridaný interný vzťah" msgid "Relation deleted" msgstr "Vzťah bol odstránený" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11032,188 +11215,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Monitor inštrukcie" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Pridať graf" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Vybrať série:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "alebo zadajte meno premennej:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Pridať túto sériu" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Série v grafe:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Zvolený časový rozsah:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analyzátor dopytov" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundy" -msgstr[2] "%d sekúnd" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minúta" -msgstr[1] "%d minúty" -msgstr[2] "%d minút" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Spustiť monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Pokyny/Nastavenie" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Povoliť presúvanie grafov" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Obnovovacia frekvencia" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Stĺpce grafu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Obnoviť predvolené" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12248,24 +12249,24 @@ msgstr "" msgid "Wrong data" msgstr "Nesprávne dáta" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Záložka nebola vytvorená" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Zobrazujem ako PHP kód" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Skontrolované SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12278,21 +12279,11 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problémy s indexami v tabuľke `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Pridať tento SQL dopyt do obľúbených" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Názov" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Žiadne dáta" @@ -12368,6 +12359,12 @@ msgstr "X Hodnoty" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Prvý riadok" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12504,143 +12501,143 @@ msgstr "Zvoľte, ktoré polia zobraziť" msgid "No column selected." msgstr "Nebol vybraný žiadny stĺpec." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledovanie %1$s bolo deaktivované vo verzii %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledovanie %1$s bolo aktivované vo verzii %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Odstrániť riadok o sledovaní tabuľky z výpisu" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Žiadne dáta" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Dátum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Deaktivovať sledovanie %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktivovať sledovanie %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Vytvoriť verziu %1$s z %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Vytvoriť verziu" @@ -13755,6 +13752,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavené na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Opakovať hlavičku každých %s riadkov" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/sl.po b/po/sl.po index 13c832883c..2875ebbb05 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-14 22:10+0200\n" "Last-Translator: Domen \n" -"Language-Team: Slovenian " -"\n" +"Language-Team: Slovenian \n" "Language: sl\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Iskanje:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "Iskanje:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Izvedi" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Ime ključa" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Opis" @@ -107,7 +107,7 @@ msgstr "" "Datoteka %s ni na voljo na tem sistemu; prosimo, za več informacij obiščite " "www.phpmyadmin.net." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Zbirka podatkov %1$s je ustvarjena." @@ -135,7 +135,7 @@ msgstr "Pripombe tabele:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Stolpec" @@ -158,7 +158,7 @@ msgstr "Stolpec" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Vrsta" @@ -175,7 +175,7 @@ msgstr "Vrsta" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -190,7 +190,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Privzeto" @@ -232,9 +232,9 @@ msgstr "Pripombe" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Ne" @@ -259,9 +259,9 @@ msgstr "Ne" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Da" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tabela" @@ -391,7 +391,7 @@ msgstr "Sledene tabele" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Zbirka podatkov" @@ -399,17 +399,17 @@ msgstr "Zbirka podatkov" msgid "Last version" msgstr "Zadnja različica" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Ustvarjeno" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Posodobljeno" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Stanje" @@ -422,7 +422,7 @@ msgstr "Stanje" msgid "Action" msgstr "Dejanje" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Pokaži" @@ -431,18 +431,18 @@ msgid "Delete tracking data for this table" msgstr "Izbriši podatke sledenja te tabele" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Zavrzi" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktivno" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ni aktivno" @@ -450,11 +450,11 @@ msgstr "ni aktivno" msgid "Versions" msgstr "Različice" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Poročilo sledenja" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Posnetek strukture" @@ -653,7 +653,7 @@ 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:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Zaznamek %s je ustvarjen" @@ -680,7 +680,7 @@ msgstr "" "navadi pomeni, da phpMyAdmin ne bo mogel dokončati tega uvoza, razen če " "povečate vaše časovne omejitve PHP." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -890,7 +890,7 @@ msgstr "" "Strežnik, ki teče z Suhosin. Prosimo, nanašajte se na %sdokumentacijo%s za " "morebitna vprašanja." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "Poizvedbe \"DROP DATABASE\" so izključene." @@ -899,7 +899,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "S tem dejanjem boste UNIČILI celotno zbirko podatkov!" @@ -983,8 +983,8 @@ msgstr "Ponovno nalaganje privilegijev" msgid "Removing Selected Users" msgstr "Odstranjevanje izbranih uporabnikov" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Zapri" @@ -1111,13 +1111,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1156,7 +1156,7 @@ msgid "Traffic" msgstr "Promet" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Nastavitve" @@ -1176,13 +1176,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Brez" @@ -1282,7 +1283,7 @@ msgstr "Spremeni nastavitve" msgid "Current settings" msgstr "Trenutne nastavitve" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Naslov grafikona" @@ -1369,7 +1370,7 @@ msgstr "Razloži izhod" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Čas" @@ -1467,7 +1468,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Uvozi" @@ -1524,7 +1525,7 @@ msgid "Cancel" msgstr "Prekliči" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Nalaganje" @@ -1672,10 +1673,10 @@ msgstr "Skrij polje poizvedbe" msgid "Show query box" msgstr "Prikaži polje poizvedbe" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1685,7 +1686,7 @@ msgstr "Uredi" msgid "No rows selected" msgstr "Ni izbranih vrstic" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1768,7 +1769,7 @@ msgstr "Vsebina kazalca podatkov" msgid "Ignore" msgstr "Prezri" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopiraj" @@ -1784,7 +1785,7 @@ msgstr "Daljica" msgid "Polygon" msgstr "Večkotnik" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometrija" @@ -2269,32 +2270,32 @@ msgstr "na uro" msgid "per day" msgstr "na dan" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Obstoječa konfiguracijska datoteka (%s) ni berljiva." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Napačna dovoljenja konfiguracijski datoteke; ne sme biti vsem zapisljiva!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Velikost pisave" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Naraščajoče" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2309,7 +2310,7 @@ msgstr "Stolpec:" msgid "Sort:" msgstr "Razvrsti:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Pokaži:" @@ -2430,8 +2431,8 @@ msgstr[2] "%1$s zadetki v %2$s" msgstr[3] "%1$s zadetkov v %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Prebrskaj" @@ -2440,14 +2441,14 @@ msgstr "Prebrskaj" msgid "Delete the matches for the %s table?" msgstr "Izbrišem zadetke v tabeli %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Izbriši" @@ -2509,41 +2510,32 @@ msgctxt "Last page" msgid "End" msgstr "Konec" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Začetna vrstica:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Število vrstic:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Način:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "vodoravnem" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "vodoravno (zasukani naslovi)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "navpičnem" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Glave vsakih %s vrstic" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Uredi po ključu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2570,89 +2562,89 @@ msgstr "Uredi po ključu" msgid "Options" msgstr "Možnosti" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Delna besedila" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Polna besedila" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relacijski ključ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relacijski prikazni stolpec" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Prikaži dvojiške vsebine" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Prikaži vsebine BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Prikaži dvojiške vsebine kot HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Skrij pretvorbo z brskalnikom" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Dobro poznano besedilo" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Dobro poznana dvojiška datoteka" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Vrstica je izbrisana" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Prekini proces" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Morda je približno. Glej [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "v poizvedbi" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, 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." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Prikazujem vrstice" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "skupaj" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Poizvedba je potrebovala %01.4f s" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2661,8 +2653,8 @@ msgstr "Poizvedba je potrebovala %01.4f s" msgid "With selected:" msgstr "Z označenim:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2673,45 +2665,45 @@ msgstr "Z označenim:" msgid "Check All" msgstr "Označi vse" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvozi" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Ustvari pogled" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Dejanja rezultatov poizvedbe" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Pogled za tiskanje" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Pogled za tiskanje (s polnimi besedili)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Predstavi podatke GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Povezave ni mogoče najti" @@ -2789,38 +2781,38 @@ msgstr "Ni definiranega indeksa!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Edinstven" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Stisnjen" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Pravilo za razvrščanje znakov" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Pripomba" @@ -2855,14 +2847,14 @@ msgstr "Pogled" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2875,12 +2867,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Iskanje" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Vstavi" @@ -3013,15 +3005,15 @@ msgstr[3] "Vstavil sem %1$d vrstic." msgid "Error while creating PDF:" msgstr "Napaka med ustvarjanjem PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Ne morem shraniti nedavne tabele" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Nedavne tabele" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Ni nobenih nedavnih tabel" @@ -3262,7 +3254,7 @@ msgid "Maximum rows to plot" msgstr "Največje število vrstic za izris" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Prebrskaj tuje vrednosti" @@ -3665,7 +3657,7 @@ msgstr "Naštevanje, izbrano s seznama določenih vrednosti" msgid "Max: %s%s" msgstr "Največja velikost: %s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "Poizvedba SQL:" @@ -3724,7 +3716,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "V vrstici" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profiliranje" @@ -3763,49 +3755,49 @@ msgstr "Na funkcionalnost %s vpliva znan hrošč, glej %s" msgid "Click to toggle" msgstr "Kliknite za preklop" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Prebrskajte svoj računalnik:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Izberite iz mape za nalaganje na spletnem strežniku %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Imenik, ki ste ga določili za nalaganje, je nedosegljiv" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nobene datoteke ni za naložiti" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Izprazni" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Izvedi" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Natisni" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Ustvarjeno" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Zadnjič posodobljeno" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Zadnjič pregledano" @@ -3925,54 +3917,54 @@ msgstr "možno izkoriščanje" msgid "numeric key detected" msgstr "zaznana številska tipka" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Ikone" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Besedilo" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Oboje" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nikjer" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Levo" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Desno" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klik" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dvojni klik" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Onemogočeno" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Odprto" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Zaprto" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3982,7 +3974,7 @@ msgstr "Zaprto" msgid "structure" msgstr "struktura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3992,7 +3984,7 @@ msgstr "struktura" msgid "data" msgstr "podatki" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4002,31 +3994,31 @@ msgstr "podatki" msgid "structure and data" msgstr "struktura in podatki" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Po meri - kot zgoraj, vendar brez izbire hitro/po meri" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "popolne poizvedbe insert" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "razširjene poizvedbe insert" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "oboje zgoraj" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nič od zgoraj" @@ -6135,8 +6127,8 @@ msgstr "" "Če imate uporabniško ime po meri, ga določite tukaj (privzeto " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Uporabniško ime" @@ -6542,7 +6534,7 @@ msgstr "Zbirke podatkov:" msgid "Table(s):" msgstr "Tabele:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Vrstice:" @@ -7164,7 +7156,7 @@ msgid "No data found for GIS visualization." msgstr "Za predstavitev GIS ni najdenih podatkov." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)." @@ -7285,11 +7277,11 @@ msgstr "" "Uporabite tipko TAB za premik od vrednosti do vrednosti ali CTRL+puščice za " "premik kamor koli" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Prikazovanje poizvedbe SQL" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Id vstavljene vrstice: %1$d" @@ -7334,7 +7326,7 @@ msgstr "Dodaj predpono tabele:" msgid "Add prefix" msgstr "Dodaj predpono" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Ali res želite izvesti naslednjo poizvedbo?" @@ -7558,16 +7550,16 @@ msgstr[1] "najdena %s druga rezultata" msgstr[2] "najdeni %s drugi rezultati" msgstr[3] "najdenih %s drugih rezultatov" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtriraj zbirke podatkov po imenu" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Počisti hitri filter" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtriraj predmete po imenu" @@ -7663,17 +7655,17 @@ msgid "Drop the database (DROP)" msgstr "Zavrzi zbirko podatkov (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura in podatki" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podatki" @@ -8085,13 +8077,13 @@ msgstr "Postavi imena stolpcev v prvo vrstico:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Gostitelj:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Čas nastanka:" @@ -8105,7 +8097,7 @@ msgstr "Različica PHP:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Zbirka podatkov:" @@ -8379,7 +8371,6 @@ msgstr "" "težave in poskusite znova." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "Ne morem razčleniti preglednice OpenDocument!" @@ -9225,7 +9216,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9388,7 +9379,7 @@ msgid "Library" msgstr "Knjižnica" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Različica" @@ -9856,54 +9847,275 @@ msgstr "" "jih uporablja strežnik, če so bile tabele ročno spremenjene. V tem primeru " "morate pred nadaljevanjem %sosvežiti privilegije%s." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Izbranega uporabnika v tabelah privilegijev nisem našel." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Dodali ste novega uporabnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundi" +msgstr[2] "%d sekunde" +msgstr[3] "%d sekund" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minuta" +msgstr[1] "%d minuti" +msgstr[2] "%d minute" +msgstr[3] "%d minut" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistika dnevnikov" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Izbrano časovno območje:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Rezultati so združeni po besedilu poizvedbe." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analitik poizvedb" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Navodila nadziranja" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"Nadziranje phpMyAdmin vam lahko pomaga pri optimizaciji konfiguracije " +"strežnika in izsleditvi časovno zahtevnih poizvedb. Za slednje morate " +"nastaviti log_output na 'TABLE' in imeti omogočen ali slow_query_log ali " +"general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " +"poveča obremenitev strežnika do 15 %." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Žal vaš strežnik zbirk podatkov ne podpira beleženja v tabelo, ki je " +"zahtevano za analiziranje dnevnikov zbirk podatov s phpMyAdmin. Beleženje v " +"tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " +"strežniške zmožnosti izrisa grafikonov." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Uporaba monitorja:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Vaš brskalnik bo osveževal vse prikazane grafikone v rednih razmikih. Pod " +"'Nastavitve' lahko dodate grafikone in spremenite pogostost osveževanja ali " +"pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " +"grafikonu." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Za prikaz poizvedb iz dnevnikov izberite ustrezno časovno obdobje na katerem " +"koli grafikonu tako, da pridržite levi miškin gumb in kazalec povlečete čez " +"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." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Prosimo, pomnite:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Omogočitev general_log lahko poveča obremenitev strežnika za 5–15 %. " +"Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov zelo " +"obremenjujoče opravilo, zato je priporočljivo, da izberete samo majhen " +"časovni razpon ter onemogočite general_log in počistite njene tabele, ko " +"nadziranja ne potrebujete več." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Dodaj grafikon" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Prednastavljeni grafikon" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Spremenljivke stanja" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Izberite serije:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Pogosto nadzirano" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ali vnesite ime spremenljivke:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Prikaži kot vrednost razlike" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Uporabi delitelja" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Pripni enoto k vrednostim podatkov" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Dodaj serijo" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Počisti serije" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serije v grafikonu:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Začni nadziranje" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Navodila/Namestitev" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Premikanje (preurejanje) grafikonov je končano" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Omogoči premikanje grafikonov" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Hitrost osveževanja" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Stolpci grafikona" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Razvrstitev grafikonov" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " +"zapleteno nastavitev, jo boste morda želeli izvoziti." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Povrni na privzeto" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Rezultat SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Ustvaril:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Podrobni profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Vrstni red" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Stanje" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Povzetek po stanju" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Skupni čas" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% časa" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Klicev" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø časa" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Označi to poizvedbo SQL" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Oznaka:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dovoli dostop do zaznamka vsem uporabnikom" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9922,10 +10134,6 @@ msgstr "Počisti" msgid "Bookmark this SQL query:" msgstr "Označi to poizvedbo SQL:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dovoli dostop do zaznamka vsem uporabnikom" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zamenjaj obstoječ zaznamek z istim imenom" @@ -10064,7 +10272,7 @@ msgstr "Preveri prekoračene" msgid "Sort" msgstr "Razvrsti" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Brez" @@ -10218,7 +10426,7 @@ msgstr "Učinkovito" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je bila uspešno spremenjena" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Napaka poizvedbe" @@ -10369,7 +10577,7 @@ msgstr "Napaka v arhivu ZIP:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Usodna napaka: Do navigacije lahko dostopate samo z Ajaxom" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Spremembe so shranjene" @@ -10425,7 +10633,7 @@ msgstr "Preklopi majhno/veliko" msgid "Toggle relation lines" msgstr "Preklopi relacijske črte" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Uvozi/Izvozi koordinate za PDF-shemo" @@ -10483,39 +10691,39 @@ msgstr "Agregat" msgid "Active options" msgstr "Dejavne možnosti" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Stran je bila ustvarjena" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Ustvarjanje strani je spodletelo" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Stran:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Uvozi z izbrane strani" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Izvozi na izbrano stran" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Ustvari stran in izvozi nanjo" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Ime nove strani: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Izvozi/Uvozi v razmerju:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "priporočeno" @@ -10543,7 +10751,7 @@ msgstr "Dodana notranja razmerja" msgid "Relation deleted" msgstr "Relacija je izbrisana" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Napaka pri shranjevanju koordinat Oblikovalnika." @@ -10992,214 +11200,6 @@ msgstr "" "nastavitve naenkrat, opazovanje ali primerjalno preizkušanje vaše zbirke " "podatkov in razveljavitev spremembe, če ni jasno izmerljivega izboljšanja." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Navodila nadziranja" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"Nadziranje phpMyAdmin vam lahko pomaga pri optimizaciji konfiguracije " -"strežnika in izsleditvi časovno zahtevnih poizvedb. Za slednje morate " -"nastaviti log_output na 'TABLE' in imeti omogočen ali slow_query_log ali " -"general_log. Vendar pomnite, da general_log ustvari ogromno podatkov in " -"poveča obremenitev strežnika do 15 %." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Žal vaš strežnik zbirk podatkov ne podpira beleženja v tabelo, ki je " -"zahtevano za analiziranje dnevnikov zbirk podatov s phpMyAdmin. Beleženje v " -"tabelo podpira MySQL 5.1.6 in novejši. Kljub temu lahko še vedno uporabljate " -"strežniške zmožnosti izrisa grafikonov." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Uporaba monitorja:" - -#: server_status_monitor.php:485 -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 "" -"Vaš brskalnik bo osveževal vse prikazane grafikone v rednih razmikih. Pod " -"'Nastavitve' lahko dodate grafikone in spremenite pogostost osveževanja ali " -"pa odstranite kateri koli grafikon s klikom na ikono zobnika ob ustreznem " -"grafikonu." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Za prikaz poizvedb iz dnevnikov izberite ustrezno časovno obdobje na katerem " -"koli grafikonu tako, da pridržite levi miškin gumb in kazalec povlečete čez " -"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_monitor.php:501 -msgid "Please note:" -msgstr "Prosimo, pomnite:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Omogočitev general_log lahko poveča obremenitev strežnika za 5–15 %. " -"Zavedajte se tudi, da je ustvarjanje statistik iz dnevnikov zelo " -"obremenjujoče opravilo, zato je priporočljivo, da izberete samo majhen " -"časovni razpon ter onemogočite general_log in počistite njene tabele, ko " -"nadziranja ne potrebujete več." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Dodaj grafikon" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Prednastavljeni grafikon" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Spremenljivke stanja" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Izberite serije:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Pogosto nadzirano" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ali vnesite ime spremenljivke:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Prikaži kot vrednost razlike" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Uporabi delitelja" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Pripni enoto k vrednostim podatkov" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Dodaj serijo" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Počisti serije" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serije v grafikonu:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistika dnevnikov" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Izbrano časovno območje:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Pridobi samo stavke SELECT, INSERT, UPDATE in DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Odstrani spremenljive podatke v stavkih INSERT za boljše združevanje" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Izberite dnevnike, iz katerih želite ustvariti statistiko." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Rezultati so združeni po besedilu poizvedbe." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analitik poizvedb" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundi" -msgstr[2] "%d sekunde" -msgstr[3] "%d sekund" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minuta" -msgstr[1] "%d minuti" -msgstr[2] "%d minute" -msgstr[3] "%d minut" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Začni nadziranje" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Navodila/Namestitev" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Premikanje (preurejanje) grafikonov je končano" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Omogoči premikanje grafikonov" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Hitrost osveževanja" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Stolpci grafikona" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Razvrstitev grafikonov" - -#: server_status_monitor.php:736 -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 "" -"Razvrstitev grafikonov je shranjena v lokalni shrambi brskalnika. Če imate " -"zapleteno nastavitev, jo boste morda želeli izvoziti." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Povrni na privzeto" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12284,24 +12284,24 @@ msgstr "Ključ naj vsebuje črke, številke [em]in[/em] posebne znake." msgid "Wrong data" msgstr "Napačni podatki" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Uporaba zaznamka \"%s\" kot privzeto poizvedbo med brskanjem." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Zaznamek ni ustvarjen" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Prikazovanje kot koda PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Preverjen SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12310,19 +12310,11 @@ msgstr "" "Tabela %s ne vsebuje unikatnega stolpca. Zmožnosti urejanja mreže, " "potrditvena polja, Uredi, Kopiraj in Izbriši niso na voljo." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Težave z indeksi tabele `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Označi to poizvedbo SQL" - -#: sql.php:1191 -msgid "Label:" -msgstr "Oznaka:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Ni podatkov za prikaz" @@ -12399,6 +12391,10 @@ msgstr "Vrednosti x" msgid "Y-Axis label:" msgstr "Oznaka osi y:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Začetna vrstica:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12528,31 +12524,31 @@ msgstr "Izberite stolpec za prikaz:" msgid "No column selected." msgstr "Ni izbranih stolpcev." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Poročilo sledenja za tabelo `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Različica %1$s je ustvarjena, sledenje %2$s je aktivirano." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Sledenje %1$s je bilo deaktivirano pri različici %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Sledenje %1$s je bilo aktivirano pri različici %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "Stavki SQL so izvedeni." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12560,115 +12556,115 @@ msgstr "" "Odložene podatke lahko izvedete z ustvarjanjem in uporabo začasne zbirke " "podatkov. Prosimo, prepričajte se, da imate privilegije za ta dejanja." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Če teh dveh vrstic ne potrebujete, ju dajte v komentar." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "Stavki SQL so bili izvoženi. Prosimo, skopirajte odložene podatke ali jih " "izvršite." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Različica posnetka %s (koda SQL)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Opredelitev sledenja podatkom je uspešno izbrisana" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Stavek upravljanja s podatki je uspešno izbrisan" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Sledenje stavkom" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Prikaži %1$s z datumi od %2$s do %3$s uporabnika %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Izbriši vrstico podatkov sledenja iz poročila" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Brez podatkov" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Stavek opredeljevanja podatkov" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Stavek upravljanja s podatki" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "Odložen SQL (prenos datoteke)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "Odložen SQL" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ta možnost bo zamenjala vašo tabelo in vsebovane podatke." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Izvršitev SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Izvozi kot %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Prikaži različice" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Dezaktiviraj sledenje za %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Dezaktiviraj zdaj" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktiviraj sledenje %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktiviraj zdaj" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Ustvari različico %1$s tabele %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Sledi tem stavkom opredeljevanja podatkov:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Sledi tem stavkom upravljanja s podatki:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Ustvari različico" @@ -13977,6 +13973,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je nastavljeno na 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Glave vsakih %s vrstic" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/sq.po b/po/sq.po index 8108a19ec1..4a145b9630 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-06 16:49+0200\n" "Last-Translator: Spartak Ferrollari \n" "Language-Team: Albanian %2$s" msgstr[1] "%1$s korrespondojnë tek tabela %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Shfleto" @@ -2412,14 +2413,14 @@ msgstr "Shfleto" msgid "Delete the matches for the %s table?" msgstr "Të fshihen të dhënat korresponduese me tabelën %s?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Fshi" @@ -2481,47 +2482,36 @@ msgctxt "Last page" msgid "End" msgstr "Fundi" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Sht" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "regjistrime për faqe" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Hën" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontal (headers të rrotulluar)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Tituj çdo %s rreshta" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Rendit sipas kyçit" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2548,72 +2538,72 @@ msgstr "Rendit sipas kyçit" msgid "Options" msgstr "Mundësitë" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Tekst i pjesshëm" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Teksti i plotë" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Çelësi relacional" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Skema relacionale" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Transformimi i Shfletuesit" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "rreshti u fshi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Hiq" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "tek query" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2622,21 +2612,21 @@ msgstr "" "Kjo pamje ka të paktën këtë numër rreshtash. Për më shumë referojuni " "%sdokumentacionit%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Shfaqja e regjistrimeve" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "Gjithsej" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Query ka zgjatur %01.4f sec" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2645,8 +2635,8 @@ msgstr "Query ka zgjatur %01.4f sec" msgid "With selected:" msgstr "N.q.s. të zgjedhur:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2657,48 +2647,48 @@ msgstr "N.q.s. të zgjedhur:" msgid "Check All" msgstr "Zgjidh gjithçka" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksporto" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Versioni i MySQL" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Shfaq për printim" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Shfaq për printim (me full text)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Shfaq skemën PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Lidhja nuk u gjet" @@ -2775,38 +2765,38 @@ msgstr "Asnjë tregues i përcaktuar!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Tregues" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "I vetëm" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Rradhitja" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komente" @@ -2839,14 +2829,14 @@ msgstr "Paraqitje" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2859,12 +2849,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Kërko" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Shto" @@ -2994,16 +2984,16 @@ msgstr[1] "%1$d rreshta të shtuar." msgid "Error while creating PDF:" msgstr "Gabim gjatë krijimit të PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Asnjë tabelë" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3252,7 +3242,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Shfleto opcionet e huaja" @@ -3604,7 +3594,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Madhësia maksimum: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3665,7 +3655,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3704,50 +3694,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Directory që keni zgjedhur për upload nuk arrin të gjehet" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Zbraz" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Printo" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Krijimi" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Ndryshimi i fundit" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Kontrolli i fundit" @@ -3871,60 +3861,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Shto" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Në vazhdim" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Jo aktiv" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Thonjëza të pambyllura" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3935,7 +3925,7 @@ msgstr "Thonjëza të pambyllura" msgid "structure" msgstr "Struktura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3945,7 +3935,7 @@ msgstr "Struktura" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3957,35 +3947,35 @@ msgstr "" msgid "structure and data" msgstr "Struktura dhe të dhënat" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Të shtuarat komplet" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Të shtuara të zgjeruara" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6037,8 +6027,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Emri i përdoruesit:" @@ -6454,7 +6444,7 @@ msgstr "Databazat" msgid "Table(s):" msgstr "Tabela" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7045,7 +7035,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 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)." @@ -7167,11 +7157,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7226,7 +7216,7 @@ msgstr "Zëvendëso prefiksin e tabelës" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7451,18 +7441,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Transformo tabelën e renditur sipas" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7568,17 +7558,17 @@ msgid "Drop the database (DROP)" msgstr "Fshij bazën e të dhënave (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Vetëm struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura dhe të dhënat" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Vetëm të dhënat" @@ -8033,7 +8023,7 @@ msgstr "Vendos emrat e kollonave tek rreshti i parë" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8041,7 +8031,7 @@ msgstr "Pritësi" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8059,7 +8049,7 @@ msgstr "Versioni i PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9236,7 +9226,7 @@ msgstr "Pronësi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Shtesë" @@ -9412,7 +9402,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Versioni i PHP" @@ -9900,68 +9890,282 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Përdoruesi i zgjedhur nuk u gjet tek tabela e të drejtave." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Ke shtuar një përdorues të ri." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "në sekondë" +msgstr[1] "në sekondë" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "në përdorim" +msgstr[1] "në përdorim" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Statistikat e rreshtave" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Zgjidh Tabelat" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Lloji i query" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +msgid "Add chart" +msgstr "Shto një fushë të re" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Ndysho emrin e databazës në" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Zgjidh Tabelat" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Shto një përdorues të ri" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "query SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Sht" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Rifresko" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Shto/Fshi kollonat e fushës" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Rezultati SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Gjeneruar nga" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "Vetëm të dhëna" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Të tjera" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Gjendja" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Koha gjithsej:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Koha" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Mbyll" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Koha" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Shtoja të preferuarve këtë query SQL" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Etiketë" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" + #: libraries/sql_query_form.lib.php:188 #, fuzzy, php-format msgid "Run SQL query/queries on server %s" @@ -9983,10 +10187,6 @@ msgstr "Kalendari" msgid "Bookmark this SQL query:" msgstr "Shtoja të preferuarve këtë query SQL" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10128,7 +10328,7 @@ msgstr "Zgjidh të mbingarkuarit" msgid "Sort" msgstr "Renditja" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10294,7 +10494,7 @@ msgstr "Efektiv" msgid "Table %1$s has been altered successfully" msgstr "Përdoruesit e zgjedhur u hoqën me sukses." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10463,7 +10663,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Ndryshimet u ruajtën" @@ -10521,7 +10721,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Kineze tradicionale" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10596,52 +10796,52 @@ msgstr "Krijo" msgid "Active options" msgstr "Opcione për tabelën" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Tabela %s u eleminua" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "Përdorimi" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Importo files" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Krijo një tregues të ri" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Emri i përdoruesit" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Nuk ka rreshta të zgjedhur" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10671,7 +10871,7 @@ msgstr "Relacione të brendshme" msgid "Relation deleted" msgstr "Shiko relacionet" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11095,205 +11295,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -msgid "Add chart" -msgstr "Shto një fushë të re" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Ndysho emrin e databazës në" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Zgjidh Tabelat" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Shto një përdorues të ri" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "query SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Statistikat e rreshtave" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Zgjidh Tabelat" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Lloji i query" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "në sekondë" -msgstr[1] "në sekondë" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "në përdorim" -msgstr[1] "në përdorim" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Sht" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Rifresko" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Shto/Fshi kollonat e fushës" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12235,47 +12236,37 @@ msgstr "" msgid "Wrong data" msgstr "Asnjë databazë" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Vleftëso SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Shtoja të preferuarve këtë query SQL" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Etiketë" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12366,6 +12357,12 @@ msgstr "Vlerë" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Sht" + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12516,150 +12513,150 @@ msgstr "Zgjidh fushën që dëshiron të shohësh" msgid "No column selected." msgstr "Nuk ka rreshta të zgjedhur" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Gjurmimi është aktiv." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Gjurmimi është aktiv." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Lejon futjen dhe mbishkrimin e të dhënave." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Asnjë databazë" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Të dhëna" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Versioni i MySQL" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Versioni i MySQL" @@ -13827,6 +13824,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#~ msgid "Headers every %s rows" +#~ msgstr "Tituj çdo %s rreshta" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/sr.po b/po/sr.po index 5d81fd7b01..4efb1ba4a6 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian %s" msgstr[2] "%s погодака унутар табеле %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Преглед" @@ -2681,14 +2682,14 @@ msgstr "Преглед" msgid "Delete the matches for the %s table?" msgstr "Приказ података табеле" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Обриши" @@ -2767,46 +2768,36 @@ msgctxt "Last page" msgid "End" msgstr "Крај" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -msgid "Start row:" -msgstr "Статус" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Број поља" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Пон" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "хоризонталном" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "хоризонталном (ротирана заглавља)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вертикалном" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Сортирај по кључу" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2833,98 +2824,98 @@ msgstr "Сортирај по кључу" msgid "Options" msgstr "Опције" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Део текста" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Пун текст" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Релациона схема" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Релациона схема" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Транформације читача" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Ред је обрисан" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Обустави" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Може бити приближно. Видите [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "у упиту" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Приказ записа" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "укупно" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Упит је трајао %01.4f секунди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2933,8 +2924,8 @@ msgstr "Упит је трајао %01.4f секунди" msgid "With selected:" msgstr "Означено:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2945,48 +2936,48 @@ msgstr "Означено:" msgid "Check All" msgstr "Означи све" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Извоз" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Операције на резултатима упита" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "За штампу" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Поглед за штампу (са пуним текстом)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "Прикажи PDF схему" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Веза није пронађена" @@ -3068,38 +3059,38 @@ msgstr "Кључ није дефинисан!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Кључеви" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Јединствени" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кардиналност" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Сортирање" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Коментари" @@ -3133,14 +3124,14 @@ msgstr "Поглед" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -3153,12 +3144,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Претраживање" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Нови запис" @@ -3292,18 +3283,18 @@ msgstr[1] "Нема одабраних редова" msgid "Error while creating PDF:" msgstr "Дозвољава читање података." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Нема табела" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Провери табелу" @@ -3555,7 +3546,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Прегледај стране вредности" @@ -3910,7 +3901,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимална величина: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3973,7 +3964,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Складиштења" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профилисање" @@ -4014,50 +4005,50 @@ msgstr "Ова функционалност %s је погођена позна msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "директоријум за слање веб сервера " -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Директоријум који сте изабрали за слање није доступан" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Испразни" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Штампај" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Направљено" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Последња измена" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Последња провера" @@ -4185,60 +4176,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Следећи" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Онемогућено" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Наводник није затворен" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4249,7 +4240,7 @@ msgstr "Наводник није затворен" msgid "structure" msgstr "Структура" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4259,7 +4250,7 @@ msgstr "Структура" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4271,35 +4262,35 @@ msgstr "" msgid "structure and data" msgstr "Структура и подаци" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Комплетан INSERT (са именима поља)" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Проширени INSERT" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6390,8 +6381,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Корисничко име:" @@ -6812,7 +6803,7 @@ msgstr "Базе" msgid "Table(s):" msgstr "Табеле" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7445,7 +7436,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL је вратио празан резултат (нула редова)." @@ -7571,11 +7562,11 @@ msgstr "" "Користите TAB тастер за померање од поља до поља, или CTRL+стрелице за " "слободно померање" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Приказ као SQL упит" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7632,7 +7623,7 @@ msgstr "Додај ново поље" msgid "Add prefix" msgstr "Додај ново поље" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7857,18 +7848,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "назив табеле" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7972,17 +7963,17 @@ msgid "Drop the database (DROP)" msgstr "Одбаци базу (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Само структура" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структура и подаци" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Само подаци" @@ -8441,7 +8432,7 @@ msgstr "Стави имена поља у први ред" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8449,7 +8440,7 @@ msgstr "Домаћин" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8467,7 +8458,7 @@ msgstr "верзија PHP-a" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9679,7 +9670,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Додатно" @@ -9854,7 +9845,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Персијски" @@ -10330,65 +10321,283 @@ msgstr "" "сервер користи ако су вршене ручне измене. У том случају %sпоново учитајте " "привилегије%s пре него што наставите." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Изабрани корисник није пронађен у табели привилегија." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Додали сте новог корисника." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "у секунди" +msgstr[1] "у секунди" +msgstr[2] "у секунди" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "се користи" +msgstr[1] "се користи" +msgstr[2] "се користи" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Статистике реда" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "Изабери све" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Врста упита" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "Додај ново поље" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "Уклони базу" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Изабери табеле" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Неисправан назив табеле" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Додај новог корисника" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL упит" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +msgid "Start Monitor" +msgstr "Статус" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Освежи" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Додај/обриши колону" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL резултат" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Генерисао" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Датотеке са подацима" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Статус" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Укупно" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Време" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Време" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Запамти SQL-упит" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Назив" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10410,10 +10619,6 @@ msgstr "Календар" msgid "Bookmark this SQL query:" msgstr "Запамти SQL-упит" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замени постојеће запамћене упите истог имена" @@ -10557,7 +10762,7 @@ msgstr "Провери табеле које имају прекорачења" msgid "Sort" msgstr "Сортирање" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10729,7 +10934,7 @@ msgstr "Ефективне" msgid "Table %1$s has been altered successfully" msgstr "Изабрани корисници су успешно обрисани." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10901,7 +11106,7 @@ msgstr "Грешка у ZIP архиви:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Измене су сачуване" @@ -10959,7 +11164,7 @@ msgstr "Промени мало/велико" msgid "Toggle relation lines" msgstr "Да одаберете релацију, кликните :" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Извоз/увоз координата за PDF схему" @@ -11034,52 +11239,52 @@ msgstr "Направи" msgid "Active options" msgstr "Опције табеле" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "Табела %s је одбачена" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "страна" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Увоз датотека" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Направи нови кључ" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Име корисника" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Извор/увоз у размери" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "препоручено" @@ -11109,7 +11314,7 @@ msgstr "Додата интерна релација" msgid "Relation deleted" msgstr "Релација обрисана" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Грешка при снимању координата за Дизајнер." @@ -11539,209 +11744,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "Додај ново поље" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "Уклони базу" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Изабери табеле" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Неисправан назив табеле" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Додај новог корисника" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL упит" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Статистике реда" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "Изабери све" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Врста упита" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "у секунди" -msgstr[1] "у секунди" -msgstr[2] "у секунди" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "се користи" -msgstr[1] "се користи" -msgstr[2] "се користи" - -#: server_status_monitor.php:674 -#, fuzzy -msgid "Start Monitor" -msgstr "Статус" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Освежи" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Додај/обриши колону" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12795,49 +12797,39 @@ msgstr "" msgid "Wrong data" msgstr "База не постоји" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Направљен маркер %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Приказ као PHP код" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "Провери SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблем при индексирању табеле `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Запамти SQL-упит" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Назив" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12930,6 +12922,11 @@ msgstr "Вредност" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +msgid "Start row:" +msgstr "Статус" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13080,148 +13077,148 @@ msgstr "Изабери поља за приказ" msgid "No column selected." msgstr "Нема одабраних редова" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Дозвољава уметање и замену података." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "База не постоји" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Подаци" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Тип извоза" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Направи релацију" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Направи релацију" diff --git a/po/sr@latin.po b/po/sr@latin.po index b038148d3b..275cdf3540 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-01-10 13:37+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) %s" msgstr[2] "%s pogodaka unutar tabele %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Pregled" @@ -2489,14 +2490,14 @@ msgstr "Pregled" msgid "Delete the matches for the %s table?" msgstr "Obriši rezultate pretrage za %s tabelu?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Obriši" @@ -2558,46 +2559,34 @@ msgctxt "Last page" msgid "End" msgstr "Kraj" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Početni red" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Broj redova:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Režim" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horizontalnom" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horizontalnom (rotirana zaglavlja)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikalnom" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Izvrši upamćen upit" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sortiraj po ključu" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2624,68 +2613,68 @@ msgstr "Sortiraj po ključu" msgid "Options" msgstr "Opcije" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Parcijalni tekstovi" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Potpuni tekstovi" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Relacioni ključ" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Relacioni prikaz kolone" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Prikaži binarni sadržaj kao HEX vrednosti" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Sakrij transformacije pregledača" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Red je obrisan" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Obustavi" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Može biti približno. Vidite [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "u upitu" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2694,21 +2683,21 @@ msgstr "" "Ovaj pogled ima najmanje ovaj broj redova. Molimo vas pogledajte " "%sdokumentaciju%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Prikaz zapisa" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "ukupno" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Upit je trajao %01.4f sekundi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2717,8 +2706,8 @@ msgstr "Upit je trajao %01.4f sekundi" msgid "With selected:" msgstr "Označeno:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2729,45 +2718,45 @@ msgstr "Označeno:" msgid "Check All" msgstr "Označi sve" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Izvoz" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Napravi pogled" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operacije na rezultatima upita" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Za štampu" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Pogled za štampu (sa punim tekstom)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Prikaži grafikon" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Veza nije pronađena" @@ -2850,38 +2839,38 @@ msgstr "Indeks nije definisan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indeksi" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Jedinstveni" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Pakovano" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalnost" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Sortiranje" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Komentar" @@ -2916,14 +2905,14 @@ msgstr "Pogled" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktura" @@ -2936,12 +2925,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Pretraživanje" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Novi zapis" @@ -3071,15 +3060,15 @@ msgstr[2] "%1$d redova umetnuto." msgid "Error while creating PDF:" msgstr "Greška prilikom kreiranja PDF-a:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Nije moguće sačuvati poslednju tabelu" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Skorašnje pristupane tabele" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Nema skorašnje pristupanih tabela" @@ -3325,7 +3314,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Pregledaj strane vrednosti" @@ -3676,7 +3665,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimalna veličina: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3737,7 +3726,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "u liniji" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilisanje" @@ -3776,50 +3765,50 @@ msgstr "Ova funkcionalnost %s je pogođena poznatom greškom, vidite %s" msgid "Click to toggle" msgstr "Kliknite da biste zamenili" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Pretražite vaš kompjuter:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" "Izaberi iz direkorijuma otpremljenih datoteka %s na web serveru:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Direktorijum koji ste izabrali za slanje nije dostupan" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Nema datoteka za otpremanje" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Isprazni" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Izvrši" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Štampaj" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Napravljeno" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Poslednja izmena" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Poslednja provera" @@ -3942,58 +3931,58 @@ msgstr "moguća zloupotreba" msgid "numeric key detected" msgstr "otkriven numerički ključ" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Test" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Oba" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Nigde" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Levo" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Desno" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Onemogućeno" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Otvori" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Zatvoreno" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4003,7 +3992,7 @@ msgstr "Zatvoreno" msgid "structure" msgstr "Struktura" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4013,7 +4002,7 @@ msgstr "Struktura" msgid "data" msgstr "podatak" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4023,31 +4012,31 @@ msgstr "podatak" msgid "structure and data" msgstr "Struktura i podaci" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Brzo - prikazuje samo minimum opcija za konfigurisanje" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Prilagođeno - prikazuje sve moguće opcije za konfigurisanje" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Prilagođeno - kao iznad, ali bez izbora brzo/prilagođeno" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "Kompletan INSERT" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "Prošireni INSERT" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "oba gore navedena" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "nijedan od gore navedenih" @@ -6109,8 +6098,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Korisničko ime" @@ -6511,7 +6500,7 @@ msgstr "Baza(e):" msgid "Table(s):" msgstr "Tabela(e):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Redovi:" @@ -7104,7 +7093,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL je vratio prazan rezultat (nula redova)." @@ -7224,11 +7213,11 @@ msgstr "" "Koristite TAB taster za pomeranje od polja do polja, ili CTRL+strelice za " "slobodno pomeranje" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Prikaz kao SQL upit" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7279,7 +7268,7 @@ msgstr "Zameni prefix tabele" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7504,18 +7493,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "naziv tabele" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Filter tables by name" msgid "filter items by name" @@ -7615,17 +7604,17 @@ msgid "Drop the database (DROP)" msgstr "Ukloni bazu i njen sadržaj" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Samo struktura" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktura i podaci" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Samo podaci" @@ -8049,7 +8038,7 @@ msgstr "Stavi imena kolona u prvi red" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8057,7 +8046,7 @@ msgstr "Domaćin" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8075,7 +8064,7 @@ msgstr "verzija PHP-a" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9178,7 +9167,7 @@ msgstr "Atributi" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Dodatno" @@ -9343,7 +9332,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Verzija" @@ -9807,71 +9796,270 @@ msgstr "" "server koristi ako su vršene ručne izmene. U tom slučaju %sponovo učitajte " "privilegije%s pre nego što nastavite." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Izabrani korisnik nije pronađen u tabeli privilegija." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Dodali ste novog korisnika." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekunda" +msgstr[1] "%d sekundi" +msgstr[2] "%d sekunde" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuta" +msgstr[2] "%d minuta" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Statistike loga" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Izaberi vremenski opseg:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Analizator upita" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Dodaj grafikon" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Unapred podesi grafikon" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Izaberite seriju podataka:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "ili unesite ime promenljive:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Dodaj ovu seriju podataka" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serije podataka u grafikonu:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Pokreni monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Omogući naglašavanje" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Interval osvežavanja" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Kolone grafikona" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL rezultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Generisao" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Datoteke sa podacima" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Ostalo" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Početak" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Ukupno vreme:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vreme" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Zatvori" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vreme" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Zapamti SQL-upit" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Naziv" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9892,10 +10080,6 @@ msgstr "Obriši" msgid "Bookmark this SQL query:" msgstr "Zapamti SQL-upit" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Zameni postojeće zapamćene upite istog imena" @@ -10034,7 +10218,7 @@ msgstr "Proveri tabele koje imaju prekoračenja" msgid "Sort" msgstr "Sortiranje" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Ništa" @@ -10194,7 +10378,7 @@ msgstr "Efektivne" msgid "Table %1$s has been altered successfully" msgstr "Tabela %1$s je uspešno izmenjena" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Greška u upitu" @@ -10350,7 +10534,7 @@ msgstr "Greška u ZIP arhivi:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Izmene su sačuvane" @@ -10406,7 +10590,7 @@ msgstr "Promeni malo/veliko" msgid "Toggle relation lines" msgstr "Zameni linije relacije" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Izvoz/uvoz koordinata za PDF shemu" @@ -10466,43 +10650,43 @@ msgstr "Sakupi" msgid "Active options" msgstr "Aktivne opcije" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Strana je kreirana" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Strana" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Uvezi sa izabrane strane" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Izvezi na izabranu stranu" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Kreiraj stranu i izvezi na nju" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Ime nove strane: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Izvor/uvoz u razmeri" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "preporučeno" @@ -10532,7 +10716,7 @@ msgstr "Dodata interna relacija" msgid "Relation deleted" msgstr "Relacija obrisana" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Greška pri snimanju koordinata za Dizajner." @@ -10944,190 +11128,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Dodaj grafikon" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Unapred podesi grafikon" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Izaberite seriju podataka:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "ili unesite ime promenljive:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Dodaj ovu seriju podataka" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serije podataka u grafikonu:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Statistike loga" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Izaberi vremenski opseg:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Analizator upita" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekunda" -msgstr[1] "%d sekundi" -msgstr[2] "%d sekunde" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuta" -msgstr[2] "%d minuta" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Pokreni monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Omogući naglašavanje" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Interval osvežavanja" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Kolone grafikona" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12163,26 +12163,26 @@ msgstr "" msgid "Wrong data" msgstr "Pogrešan podatak" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Napravljen marker %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Prikaz kao PHP kod" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validiran SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12195,21 +12195,11 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem pri indeksiranju tabele `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Zapamti SQL-upit" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Naziv" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12289,6 +12279,12 @@ msgstr "X vrednosti" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Početni red" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12431,145 +12427,145 @@ msgstr "Izaberi kolonu za prikaz" msgid "No column selected." msgstr "Nema odabranih redova" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Praćenje je aktivno." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Obriši red sa podacima o praćenju iz izveštaja" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Nema podataka" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Izvezi kao %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Napravi relaciju" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Kreiraj verziju" @@ -13733,6 +13729,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert je postavljeno na 0" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Izvrši upamćen upit" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/sv.po b/po/sv.po index c20164adc4..7d3c15a65f 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-04 09:56+0200\n" "Last-Translator: Anders Jonsson \n" "Language-Team: Swedish %2$s" msgstr[1] "%1$s träffar i %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Bläddra" @@ -2425,14 +2426,14 @@ msgstr "Bläddra" msgid "Delete the matches for the %s table?" msgstr "Ta bort resultat som matchar %s tabellen?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Radera" @@ -2494,41 +2495,32 @@ msgctxt "Last page" msgid "End" msgstr "Slut" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Startrad:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Antal rader:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Läge:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "horisontell" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "horisontell (roterade rubriker)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Rubriker var %s rad" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Sortera efter nyckel" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2555,89 +2547,89 @@ msgstr "Sortera efter nyckel" msgid "Options" msgstr "Alternativ" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Förkortade texter" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Kompletta texter" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Besläktad nyckel" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Kolumn för besläktad nyckel" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Visa binärt innehåll" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Visa BLOB-innehåll" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Visa binärt innehåll som HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Dölj webbläsarens transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Välkänd text" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Välkänd binär" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Raden har raderats" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Döda" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Kan vara ungefärligt. Se [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "i fråga" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, 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." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Visar rader" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "totalt" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Frågan tog %01.4f sek" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2646,8 +2638,8 @@ msgstr "Frågan tog %01.4f sek" msgid "With selected:" msgstr "Med markerade:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2658,45 +2650,45 @@ msgstr "Med markerade:" msgid "Check All" msgstr "Markera alla" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Exportera" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Skapa vy" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Operationer för frågeresultat" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Utskriftsvänlig visning" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Utskriftsvänlig version (med fullständiga texter)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Visa diagram" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Visualisera GIS-data" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Länken hittades inte" @@ -2774,38 +2766,38 @@ msgstr "Inga index är definierade!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Index" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unik" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Packad" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Kardinalitet" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Kollationering" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Kommentar" @@ -2840,14 +2832,14 @@ msgstr "Vy" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Struktur" @@ -2860,12 +2852,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Sök" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Lägg till" @@ -2992,15 +2984,15 @@ msgstr[1] "%1$d rader infogade." msgid "Error while creating PDF:" msgstr "Fel vid skapande av PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Kunde inte spara den senaste tabellen" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "De senaste tabellerna" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Det finns inga nya tabeller" @@ -3242,7 +3234,7 @@ msgid "Maximum rows to plot" msgstr "Maximalt antal rader att visa" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Bläddra bland främmande värden" @@ -3643,7 +3635,7 @@ msgstr "En uppräkning, vald från listan av definierade värden" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL-fråga:" @@ -3702,7 +3694,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Infogad" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profilering" @@ -3741,49 +3733,49 @@ msgstr "Funktionaliteten för %s påverkas av en känd bugg, se %s" msgid "Click to toggle" msgstr "Klicka för att växla" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Gå igenom din dator:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Katalogen som du konfigurerat för uppladdning kan inte nås" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Det finns inga filer att ladda upp" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Töm" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Utför" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Skriv ut" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Skapande" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Senaste uppdatering" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Senaste kontroll" @@ -3901,54 +3893,54 @@ msgstr "möjlig exploatering" msgid "numeric key detected" msgstr "numerisk tangent upptäckt" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Ikoner" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Text" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Båda" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Ingenstans" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Vänster" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Höger" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Klicka" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Dubbelklicka" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Inaktiverad" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Öppen" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Stängd" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3958,7 +3950,7 @@ msgstr "Stängd" msgid "structure" msgstr "struktur" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3968,7 +3960,7 @@ msgstr "struktur" msgid "data" msgstr "data" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3978,31 +3970,31 @@ msgstr "data" msgid "structure and data" msgstr "struktur och data" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Snabb - visa endast få alternativ för konfiguration" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Anpassad - visa alla tillgängliga konfigurationsalternativ" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Anpassad - som ovan, men utan valet snabb/anpassad" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "kompletta infogningar" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "utökade infogningar" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "båda av ovanstående" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ingen av ovanstående" @@ -6109,8 +6101,8 @@ msgstr "" "Om du har ett eget användarnamn, ange det här (standardnamn är " "[kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Användarnamn" @@ -6515,7 +6507,7 @@ msgstr "Databas(er):" msgid "Table(s):" msgstr "Tabell(er):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Rader:" @@ -7135,7 +7127,7 @@ msgid "No data found for GIS visualization." msgstr "Inga data finns för GIS-visualisering." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)." @@ -7255,11 +7247,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Visar SQL-fråga" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Infogade rad-id: %1$d" @@ -7304,7 +7296,7 @@ msgstr "Lägg till tabellprefix:" msgid "Add prefix" msgstr "Lägg till prefix" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Vill du verkligen exekvera följande fråga?" @@ -7526,16 +7518,16 @@ msgid_plural "%s other results found" msgstr[0] "%s annat resultat hittat" msgstr[1] "%s andra resultat hittade" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "filtrera databaser efter namn" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Rensa snabbfilter" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "filtrera tabeller efter namn" @@ -7631,17 +7623,17 @@ msgid "Drop the database (DROP)" msgstr "Tag bort databasen (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Enbart struktur" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Struktur och data" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Enbart data" @@ -8053,13 +8045,13 @@ msgstr "Sätt kolumnnamn på första raden:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Värd:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Tid vid skapande:" @@ -8073,7 +8065,7 @@ msgstr "PHP-version:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Databas:" @@ -9197,7 +9189,7 @@ msgstr "Attribut" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Extra" @@ -9360,7 +9352,7 @@ msgid "Library" msgstr "Bibliotek" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Version" @@ -9826,65 +9818,287 @@ 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." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Den valda användaren kunde inte hittas i privilegietabellen." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Du har lagt till en ny användare." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d sekund" +msgstr[1] "%d sekunder" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d minut" +msgstr[1] "%d minuter" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Logga statistik" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Välj tidsintervall:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Hämta endast SELECT-, INSERT-, UPDATE- och DELETE-kommandon" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Ta bort variabeldata i INSERT-kommandon för bättre gruppering" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Välj vilken logg du vill att statistiken ska genereras från." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Resultaten grupperas efter frågetext." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Frågeanalyserare" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Övervaka instruktioner" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin Monitor hjälpa dig optimera serverkonfigurationen och spåra " +"tidsintensiva frågor. För det senare måste du ställa log_output till \"TABLE" +"\" och ha antingen slow_query_log eller general_log aktiverat. Observera att " +"general_log producerar mycket data och ökar lasten på servern med upp till " +"15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Tyvärr, din databasserver stöder inte loggning till tabeller vilket är ett " +"krav för att analysera databasloggar med phpMyAdmin. Loggning till tabeller " +"stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda serverns " +"diagramfunktioner." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Använda monitorn:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Din webbläsare kommer uppdatera alla diagram som visas med jämna mellanrum. " +"Du kan lägga till diagram och ändra uppdateringsfrekvensen under " +"\"Inställningar\", eller ta bort diagram med kugghjulsikonen på respektive " +"diagram." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"För att visa sökfrågor från loggarna, välj önskad tidsperiod på något " +"diagram genom att hålla ner vänster musknapp och dra över diagrammet. När " +"bekräftat kommer detta ladda en tabell över grupperade frågor, där kan du " +"klicka på de förekommande SELECT-satserna för att ytterligare analysera " +"dessa." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Vänligen notera:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Att aktivera \"general_log\" kan öka belastningen på servern med 5-15%. Var " +"också medveten om att generera statistik från loggarna är en " +"belastningsintensiv uppgift, så det är klokt att välja en kort tidsperiod " +"samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " +"inte behövs längre." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Lägg till diagram" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Förinställt diagram" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Statusvariabler" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Välj serie:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Vanligtvis övervakade" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "eller skriv variabelnamn:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Visa som skillnadsvärde" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Tillämpa en dividend" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Lägg till enhet till datavärdena" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Lägg till denna serie" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Rensa serie" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Serie i diagram:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Starta Monitor" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Instruktioner/Setup" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Klar med ändring/redigering av diagram" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Aktivera framhävning" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Uppdateringsfrekvens" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Visa kolumner" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Diagramarrangemang" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Arrangemanget av diagrammen lagras lokalt i webbläsaren. Du kanske vill " +"exportera den om du har en komplicerad inställning." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Återställ till standardinställningen" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL-resultat" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Genererad av:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Detaljerad profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Annan" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Start" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Total tid:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "Tid" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Stäng" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Tid" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Skapa bokmärke för den här SQL-frågan" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etikett:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Låt alla användare få tillgång till detta bokmärke" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9903,10 +10117,6 @@ msgstr "Rensa" msgid "Bookmark this SQL query:" msgstr "Skapa bokmärke för den här SQL-frågan:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Låt alla användare få tillgång till detta bokmärke" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Ersätt befintligt bokmärke med samma namn" @@ -10046,7 +10256,7 @@ msgstr "Kontrollera tabeller med overhead" msgid "Sort" msgstr "Sortera" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Inget" @@ -10200,7 +10410,7 @@ msgstr "Effektiv" msgid "Table %1$s has been altered successfully" msgstr "Tabellen %1$s har ändrats" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Sökningsfel" @@ -10351,7 +10561,7 @@ msgstr "Fel i ZIP-arkiv:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Oåterkalleligt fel: Navigering kan endast nås via AJAX" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Ändringarna har sparats" @@ -10407,7 +10617,7 @@ msgstr "Växla liten/stor" msgid "Toggle relation lines" msgstr "Växla mellan relaterade linjer" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Importera/exportera koordinater för PDF-schema" @@ -10465,39 +10675,39 @@ msgstr "Aggregera" msgid "Active options" msgstr "Aktiva alternativ" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Sidan har skapats" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sidan gick inte att skapa" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Sida:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Importera från vald sida" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Exportera till vald sida" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Skapa en sida och exportera till den" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Nytt sidnamn: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Exportera /Importera till skala:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "rekommenderad" @@ -10525,7 +10735,7 @@ msgstr "Intern relation tillagd" msgid "Relation deleted" msgstr "Relation borttagen" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Fel vid sparande av koordinater för Designer." @@ -10968,215 +11178,6 @@ msgstr "" "taget, iaktta eller benchmarka databasen, och ångra den förändring om det " "inte fanns någon tydligt mätbar förbättring." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Övervaka instruktioner" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin Monitor hjälpa dig optimera serverkonfigurationen och spåra " -"tidsintensiva frågor. För det senare måste du ställa log_output till \"TABLE" -"\" och ha antingen slow_query_log eller general_log aktiverat. Observera att " -"general_log producerar mycket data och ökar lasten på servern med upp till " -"15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Tyvärr, din databasserver stöder inte loggning till tabeller vilket är ett " -"krav för att analysera databasloggar med phpMyAdmin. Loggning till tabeller " -"stöds av MySQL 5.1.6 och senare. Du kan fortfarande använda serverns " -"diagramfunktioner." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Använda monitorn:" - -#: server_status_monitor.php:485 -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 "" -"Din webbläsare kommer uppdatera alla diagram som visas med jämna mellanrum. " -"Du kan lägga till diagram och ändra uppdateringsfrekvensen under " -"\"Inställningar\", eller ta bort diagram med kugghjulsikonen på respektive " -"diagram." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"För att visa sökfrågor från loggarna, välj önskad tidsperiod på något " -"diagram genom att hålla ner vänster musknapp och dra över diagrammet. När " -"bekräftat kommer detta ladda en tabell över grupperade frågor, där kan du " -"klicka på de förekommande SELECT-satserna för att ytterligare analysera " -"dessa." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Vänligen notera:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Att aktivera \"general_log\" kan öka belastningen på servern med 5-15%. Var " -"också medveten om att generera statistik från loggarna är en " -"belastningsintensiv uppgift, så det är klokt att välja en kort tidsperiod " -"samt att inaktivera \"general_log\" och tömma tabellen när övervakningen " -"inte behövs längre." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Lägg till diagram" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Förinställt diagram" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Statusvariabler" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Välj serie:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Vanligtvis övervakade" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "eller skriv variabelnamn:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Visa som skillnadsvärde" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Tillämpa en dividend" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Lägg till enhet till datavärdena" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Lägg till denna serie" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Rensa serie" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Serie i diagram:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Logga statistik" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Välj tidsintervall:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Hämta endast SELECT-, INSERT-, UPDATE- och DELETE-kommandon" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Ta bort variabeldata i INSERT-kommandon för bättre gruppering" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Välj vilken logg du vill att statistiken ska genereras från." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Resultaten grupperas efter frågetext." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Frågeanalyserare" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d sekund" -msgstr[1] "%d sekunder" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d minut" -msgstr[1] "%d minuter" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Starta Monitor" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Instruktioner/Setup" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Klar med ändring/redigering av diagram" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Aktivera framhävning" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Uppdateringsfrekvens" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Visa kolumner" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Diagramarrangemang" - -#: server_status_monitor.php:736 -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 "" -"Arrangemanget av diagrammen lagras lokalt i webbläsaren. Du kanske vill " -"exportera den om du har en komplicerad inställning." - -#: server_status_monitor.php:750 -msgid "Reset to default" -msgstr "Återställ till standardinställningen" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12260,24 +12261,24 @@ msgstr "Nyckeln ska innehålla bokstäver, siffror [em]och[/em] specialtecken." msgid "Wrong data" msgstr "Felaktigt data" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Använd bokmärket \"%s\" som standard webbläsarfråga." -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Bokmärke ej skapat" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Visar som PHP-kod" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Validerad SQL-kod" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -12289,19 +12290,11 @@ msgstr "" "Denna tabell innehåller ingen unik kolumn. Funktionerna rutnätsredigera, " "kryssruta, redigera, kopiera och radera är inte tillgängliga." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Problem med index för tabell `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Skapa bokmärke för den här SQL-frågan" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etikett:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Ingen data att visa" @@ -12377,6 +12370,10 @@ msgstr "X-värden" msgid "Y-Axis label:" msgstr "Y-axel etikett:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Startrad:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12507,31 +12504,31 @@ msgstr "Välj kolumn att visa:" msgid "No column selected." msgstr "Ingen kolumn vald." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Spårning av rapport för tabell `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Version %1$s är skapad, spårning för %2$s är aktiv." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Spårning av %1$s deaktiverades vid version %2$s." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "Spårning av %1$s aktiverades vid version %2$s." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL-satser exekverade." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12539,113 +12536,113 @@ msgstr "" "Du kan dumpa genom att skapa och använda en tillfällig databas. Se till att " "du har behörighet att göra det." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Kommentera bort dessa två rader om du inte behöver dem." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL-satser exporteras. Kopiera dump eller verkställ." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Version %s ögonblicksbild (SQL-kod)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Spårningsdata har tagits bort" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Spårningsdata manipulation har tagits bort" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Spårning av uppgifter" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "Visa %1$s med datum från %2$s till %3$s av användare %4$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Ta bort spårning för denna rapport" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Inget data" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Datum" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Data definition redogörelse" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Data manipulation redogörelse" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL-dump (filnedladdning)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL-dump" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Denna alternativ kommer att ersätta din tabell och ingående data." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL-exekvering" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Exportera som %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Visa versioner" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "Avaktivera spårning för %s" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Deaktivera nu" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "Aktivera spårning för %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Aktivera nu" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "Skapa version %1$s av %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Spåra dessa datadefinitioners kommandon:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Spåra dessa datahanteringskommandon:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Skapa version" @@ -13933,6 +13930,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert är satt till 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Rubriker var %s rad" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/ta.po b/po/ta.po index 3db7ada808..cb2e5753ae 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 09:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil \n" @@ -49,7 +49,7 @@ msgid "Search:" msgstr "தேடு" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -75,24 +75,24 @@ msgstr "தேடு" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "செல்" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "முக்கியபெயர்" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "விளக்கம்" @@ -109,7 +109,7 @@ msgid "" "for more information." msgstr "%s கோப்பு இந்த அமைப்பில் இல்லை, மேலும் தகவலுக்கு www.phpmyadmin.net செல்லுங்கள்" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s தரவுத்தளம் உருவாக்கப்பட்டது" @@ -139,7 +139,7 @@ msgstr "அட்டவணைக் கருத்துரைகள்" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "நிரல்" @@ -162,7 +162,7 @@ msgstr "நிரல்" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "வகை" @@ -179,7 +179,7 @@ msgstr "வகை" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "வெற்று" @@ -194,7 +194,7 @@ msgstr "வெற்று" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "முன்னிருப்பு" @@ -236,9 +236,9 @@ msgstr "கருத்துரைகள்" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "இல்லை" @@ -263,9 +263,9 @@ msgstr "இல்லை" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ஆம்" @@ -319,7 +319,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "அட்டவணை" @@ -401,7 +401,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "தரவுத்தளம்" @@ -409,17 +409,17 @@ msgstr "தரவுத்தளம்" msgid "Last version" msgstr "இறுதி பதிப்பு" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "உருவாக்கப்பட்டது" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "புதுப்பிக்கப்பட்டது" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "தகுநிலை" @@ -432,7 +432,7 @@ msgstr "தகுநிலை" msgid "Action" msgstr "செயல்" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "காண்பி" @@ -441,18 +441,18 @@ msgid "Delete tracking data for this table" msgstr "" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "அழி" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "செயற்படு" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "செயற்பாடற்ற" @@ -460,11 +460,11 @@ msgstr "செயற்பாடற்ற" msgid "Versions" msgstr "பதிப்புக்கள்" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "" @@ -668,7 +668,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "" @@ -690,7 +690,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -886,7 +886,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "" @@ -895,7 +895,7 @@ msgstr "" msgid "Do you really want to execute \"%s\"?" msgstr "" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -984,8 +984,8 @@ msgstr "" msgid "Removing Selected Users" msgstr "" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "மூடு" @@ -1108,13 +1108,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1155,7 +1155,7 @@ msgid "Traffic" msgstr "போக்குவரத்து" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "அமைப்புகள்" @@ -1175,13 +1175,14 @@ msgstr "வரைபடத்தை கட்டத்தில் சேர்" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "எதுவுமில்லை" @@ -1274,7 +1275,7 @@ msgstr "அமைப்புக்களை மாற்று" msgid "Current settings" msgstr "நடப்பு அமைப்புக்கள்" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "வரைபடத் தலைப்பு" @@ -1363,7 +1364,7 @@ msgstr "" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "" @@ -1468,7 +1469,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "இறக்குமதி" @@ -1527,7 +1528,7 @@ msgid "Cancel" msgstr "விலக்கு" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "ஏற்றப்படுகிறது" @@ -1683,10 +1684,10 @@ msgstr "வினவல் பெட்டியை மறை" msgid "Show query box" msgstr "வினவல் பெட்டியை காண்பி" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1696,7 +1697,7 @@ msgstr "தொகு" msgid "No rows selected" msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1782,7 +1783,7 @@ msgstr "" msgid "Ignore" msgstr "புறக்கணி" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "நகல்" @@ -1798,7 +1799,7 @@ msgstr "" msgid "Polygon" msgstr "பல்கோணி" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "கேத்திர கணிதம்" @@ -2292,31 +2293,31 @@ msgstr "ஒரு மணி நேரத்திற்கு" msgid "per day" msgstr "ஒரு நாளைக்கு" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "எழுத்துரு அளவு" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "ஏறுவரிசை" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2335,7 +2336,7 @@ msgstr "நிரல்" msgid "Sort:" msgstr "வரிசைப்படுத்து" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2460,8 +2461,8 @@ msgstr[0] "%s அட்டவணையில் பொருந்தியவ msgstr[1] "%s அட்டவணையில் பொருந்தியவைகள் %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "உலாவு" @@ -2470,14 +2471,14 @@ msgstr "உலாவு" msgid "Delete the matches for the %s table?" msgstr "%s அட்டவணையில் பொருத்தப்பாடுகளை நீக்குவதா?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "அழி" @@ -2541,45 +2542,34 @@ msgctxt "Last page" msgid "End" msgstr "முடிவு" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Sort" -msgid "Start row:" -msgstr "வரிசைப்படுத்து" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "திங்கள்" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2606,89 +2596,89 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2697,8 +2687,8 @@ msgstr "" msgid "With selected:" msgstr "உடன் தெரிவுசெய்யப்பட்டது:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2709,47 +2699,47 @@ msgstr "உடன் தெரிவுசெய்யப்பட்டது:" msgid "Check All" msgstr "அனைத்தையும் தெரி" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ஏற்றுமதி" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "அச்சுப் பார்வை" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Add into comments" msgid "Display chart" msgstr "கருதிட்குள் சேர்க்க" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2824,38 +2814,38 @@ msgstr "" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "சுட்டுகள்" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "தனித்தன்மை" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "பொதிக்கப்பட்டது" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "அடுக்கு" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "கருத்துரை" @@ -2888,14 +2878,14 @@ msgstr "நோக்கு" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "கட்டமைப்பு" @@ -2908,12 +2898,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "தேடு" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "செருகு" @@ -3042,15 +3032,15 @@ msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்ட msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "சமீபத்திய அட்டவணைகள்" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "" @@ -3292,7 +3282,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3640,7 +3630,7 @@ msgstr "" msgid "Max: %s%s" msgstr "" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3701,7 +3691,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "உள்வரிசை" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3740,49 +3730,49 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "உனது கணினியை உலாவு" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "வெறுமை" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "நிறைவேற்று" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "அச்சிடு" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "உருவாக்கம்" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "இறுதி இற்றைப்படுத்தல்" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "கடைசி சோதனை" @@ -3897,58 +3887,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "துணைநிரல்கள்" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "சோதனை" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "இரு சார்பிலும்" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "இடது" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "வலது" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "திற" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "மூடப்பட்டது" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3958,7 +3948,7 @@ msgstr "மூடப்பட்டது" msgid "structure" msgstr "கட்டமைப்பு" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3968,7 +3958,7 @@ msgstr "கட்டமைப்பு" msgid "data" msgstr "தரவு" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3978,31 +3968,31 @@ msgstr "தரவு" msgid "structure and data" msgstr "கட்டமைப்பும் தரவும்" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5956,8 +5946,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6353,7 +6343,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6915,7 +6905,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7032,11 +7022,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7089,7 +7079,7 @@ msgstr "கருதிட்குள் சேர்க்க" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7311,16 +7301,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7418,17 +7408,17 @@ msgid "Drop the database (DROP)" msgstr "தரவுத்தளத்தை இரத்து செய் (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "கட்டமைப்பை மட்டும்" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "கட்டமைப்பு மற்றும் தரவுகள்" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "தரவுகளை மட்டும்" @@ -7847,13 +7837,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -7871,7 +7861,7 @@ msgstr "பதிப்பு" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8943,7 +8933,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9111,7 +9101,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "பதிப்பு" @@ -9566,64 +9556,265 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "நீங்கள் புதிய பயனாளரை சேர்த்துள்ளீர்கள்" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "%s களத்தை சேர்க்க" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "புதிய பயனாளரை சேர்க்க" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "இயற்று" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "ஏனையது" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "சனி" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total:" msgid "Total Time" msgstr "மொத்த:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "மூடு" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "சிட்டை" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9642,10 +9833,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9773,7 +9960,7 @@ msgstr "" msgid "Sort" msgstr "வரிசைப்படுத்து" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "ஒன்றுமில்லாத" @@ -9938,7 +10125,7 @@ msgstr "பயனுடைய" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "வினவல் வழு" @@ -10080,7 +10267,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10136,7 +10323,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10196,39 +10383,39 @@ msgstr "" msgid "Active options" msgstr "செயல்கள்" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10256,7 +10443,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10661,192 +10848,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "%s களத்தை சேர்க்க" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "புதிய பயனாளரை சேர்க்க" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "கள நிரல்களை சேர்க்க/ நீக்குக" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11771,45 +11772,35 @@ msgstr "" msgid "Wrong data" msgstr "தரவு இல்லை" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "சிட்டை" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data" @@ -11897,6 +11888,12 @@ msgstr "X மதிப்புக்கள்" msgid "Y-Axis label:" msgstr "Y-அச்சு சிட்டை:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Sort" +msgid "Start row:" +msgstr "வரிசைப்படுத்து" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12041,145 +12038,145 @@ msgstr "காட்சிப்படுத்த நீங்கள் கு msgid "No column selected." msgstr "தெரிவுசெய்யப்பட வரிசைகள் இல்லை" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "தரவு இல்லை" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "திகதி" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "பதிப்புகளை காட்டு" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate now" msgid "Activate tracking for %s" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "இப்போது செயற்படுத்து" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "பதிப்பை உருவாக்கு" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "பதிப்பை உருவாக்கு" diff --git a/po/te.po b/po/te.po index 1c44878303..b4d6e0df4d 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-11-06 12:16+0200\n" "Last-Translator: వీవెన్ \n" "Language-Team: Telugu %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" # మొదటి అనువాదము -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "ఖాళీ" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "ముద్రించు" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "సృష్టి" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "చివరి మార్పు" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "చివరి చూపు" @@ -4005,62 +3995,62 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "చొప్పించు" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "తదుపరి" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 #, fuzzy #| msgid "Height" msgid "Right" msgstr "ఎత్తు" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "మూసివేయి" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4070,7 +4060,7 @@ msgstr "మూసివేయి" msgid "structure" msgstr "నిర్మాణాకృతి" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4080,7 +4070,7 @@ msgstr "నిర్మాణాకృతి" msgid "data" msgstr "భోగట్టా" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4090,31 +4080,31 @@ msgstr "భోగట్టా" msgid "structure and data" msgstr "నిర్మాణాకృతి మరియు భోగట్టా" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6083,8 +6073,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "వాడుకరిపేరు" @@ -6494,7 +6484,7 @@ msgstr "డేటాబేసు(లు)" msgid "Table(s):" msgstr "పట్టిక(లు):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -7060,7 +7050,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7182,11 +7172,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7239,7 +7229,7 @@ msgstr "పట్టిక వ్యాఖ్యలు" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7473,18 +7463,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Table name" msgid "filter databases by name" msgstr "పట్టిక పేరు" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Table name" msgid "filter items by name" @@ -7590,17 +7580,17 @@ msgid "Drop the database (DROP)" msgstr "డేటాబేస్ ను తుడిచివేయి" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "నిర్మాణం మాత్రమే" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "నిర్మాణం, మరియు డేటా" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "డేటా మాత్రమే" @@ -8021,13 +8011,13 @@ msgstr "వ్యాఖ్యలు" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -8044,7 +8034,7 @@ msgstr "చివరి కూర్పు" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9159,7 +9149,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9324,7 +9314,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9779,67 +9769,281 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" # మొదటి అనువాదము -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "మీరు క్రొత్త వాడుకరిని చేర్చారు." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "క్షణం" +msgstr[1] "క్షణం" + +# మొదటి అనువాదము +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "నిమిషం" +msgstr[1] "నిమిషం" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "గణాంకాలను చూపించు" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +# మొదటి అనువాదము +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add into comments" +msgid "Add chart" +msgstr "స్పందనలకు చేర్చు" + +# మొదటి అనువాదము +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "డేటాబేస్ తొలగించండి" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new User" +msgid "Add this series" +msgstr "క్రొత్త వాడుకరిని చేర్చు" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "మొదలుపెట్టు" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Table comments" +msgid "Chart columns" +msgstr "పట్టిక వ్యాఖ్యలు" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Leave blank for defaults" +msgid "Reset to default" +msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "General" msgid "Generated by:" msgstr "సాధారణ" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Start" msgid "State" msgstr "మొదలుపెట్టు" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "మొత్తం" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "సమయం" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "మూసివేయి" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "సమయం" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Data Label" +msgid "Label:" +msgstr "డేటాబేస్" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9858,10 +10062,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9991,7 +10191,7 @@ msgstr "" msgid "Sort" msgstr "క్రమంలో పేర్చు" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "ఏమీలేదు" @@ -10163,7 +10363,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -10312,7 +10512,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -10373,7 +10573,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10438,46 +10638,46 @@ msgid "Active options" msgstr "క్రియాశీల ఎంపికలు" # మొదటి అనువాదము -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "పుటను సృష్టించడమైనది" # మొదటి అనువాదము -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది" # మొదటి అనువాదము -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "పుట" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" # మొదటి అనువాదము -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a page" msgid "Create a page and export to it" msgstr "పుటని సృష్టించు" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "కొత్త పుట పేరు: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10505,7 +10705,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10921,205 +11121,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -# మొదటి అనువాదము -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add into comments" -msgid "Add chart" -msgstr "స్పందనలకు చేర్చు" - -# మొదటి అనువాదము -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "డేటాబేస్ తొలగించండి" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new User" -msgid "Add this series" -msgstr "క్రొత్త వాడుకరిని చేర్చు" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "గణాంకాలను చూపించు" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "క్షణం" -msgstr[1] "క్షణం" - -# మొదటి అనువాదము -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "నిమిషం" -msgstr[1] "నిమిషం" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "మొదలుపెట్టు" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Table comments" -msgid "Chart columns" -msgstr "పట్టిక వ్యాఖ్యలు" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Leave blank for defaults" -msgid "Reset to default" -msgstr "అప్రమేయాలకై ఖాళీగా వదిలివేయండి" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12053,45 +12054,35 @@ msgstr "" msgid "Wrong data" msgstr "భోగట్టా" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Data Label" -msgid "Label:" -msgstr "డేటాబేస్" - #: tbl_chart.php:38 #, fuzzy #| msgid "data" @@ -12182,6 +12173,12 @@ msgstr "విలువ" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "మొదలుపెట్టు" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12328,146 +12325,146 @@ msgstr "భోగట్టా" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "data" msgid "No data" msgstr "భోగట్టా" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "తేదీ" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "More settings" msgid "Create version %1$s of %2$s" msgstr "మరిన్ని అమరికలు" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/th.po b/po/th.po index 0512114435..8f976bc925 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-29 08:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Thai \n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "ค้นหา" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "ค้นหา" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "ไป" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "ชื่อคีย์" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "คำอธิบาย" @@ -105,7 +105,7 @@ msgid "" "for more information." msgstr "ไม่สามารถเปิดไฟล์ %s ได้ เพื่อรายละเอียด กรุณาไป www.phpmyadmin.net" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "ฐานข้อมูล %1$s ถูกสร้างเรียบร้อยแล้ว" @@ -135,7 +135,7 @@ msgstr "หมายเหตุของตาราง" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "สดมภ์" @@ -158,7 +158,7 @@ msgstr "สดมภ์" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "ชนิด" @@ -175,7 +175,7 @@ msgstr "ชนิด" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "ว่างเปล่า (null)" @@ -190,7 +190,7 @@ msgstr "ว่างเปล่า (null)" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "ค่าปริยาย" @@ -232,9 +232,9 @@ msgstr "หมายเหตุ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "ไม่" @@ -259,9 +259,9 @@ msgstr "ไม่" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ใช่" @@ -311,7 +311,7 @@ msgstr "การจัดเก็บการตั้งค่าของ ph #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "ตาราง" @@ -392,7 +392,7 @@ msgstr "ตารางที่ถูกติดตาม" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "ฐานข้อมูล" @@ -400,17 +400,17 @@ msgstr "ฐานข้อมูล" msgid "Last version" msgstr "เวอร์ชั่นล่าสุด" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "ถูกสร้าง" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "ปรับปรุงแล้ว" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "สถานะ" @@ -423,7 +423,7 @@ msgstr "สถานะ" msgid "Action" msgstr "กระทำการ" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "แสดง" @@ -432,18 +432,18 @@ msgid "Delete tracking data for this table" msgstr "ลบการติดตามตารางนี้" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "โยนทิ้ง" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "ใช้งานได้" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "ใช้งานไม่ได้" @@ -451,11 +451,11 @@ msgstr "ใช้งานไม่ได้" msgid "Versions" msgstr "รุ่น" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "รายงานผลการติดตาม" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "เก็บโครงสร้างไว้" @@ -656,7 +656,7 @@ msgstr "ไม่สามารถแปลงไฟล์ข้อมูลช msgid "Could not load import plugins, please check your installation!" msgstr "ไม่สามารถโหลดนำเข้าปลั๊กอินได้ กรุณาตรวจสอบการติดตั้งของคุณ" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" @@ -680,7 +680,7 @@ msgstr "" "ชุดข้อมูลที่นำเข้าล่าสุดไม่ได้สามารถนำเข้าได้ หมายความว่า phpMyAdmin ไม่สามารถนำเข้าได้ทัน " "ตามเวลารันสูงสุดที่กำหนดใน PHP" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -887,7 +887,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" @@ -896,7 +896,7 @@ msgstr "คำสั่ง \"DROP DATABASE\" ถูกปิดไว้" msgid "Do you really want to execute \"%s\"?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "คุณกำลังจะทำลายฐานข้อมูลทั้งหมด" @@ -982,8 +982,8 @@ msgstr "รีเฟรชสิทธิใหม่" msgid "Removing Selected Users" msgstr "ถอนผู้ใช้ที่เลือก" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "ปิด" @@ -1108,13 +1108,13 @@ msgstr "ไบต์" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "กิโลไบต์" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "เมกกะไบต์" @@ -1153,7 +1153,7 @@ msgid "Traffic" msgstr "การจราจร" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "การตั้งค่า" @@ -1173,13 +1173,14 @@ msgstr "เพิ่มแสดงผลไปในตารางข้อม msgid "Please add at least one variable to the series" msgstr "กรุณาเพิ่มค่าตัวแปรอย่างน้อยหนึ่งตัวเข้าไปในลำดับ" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "ไม่มี" @@ -1274,7 +1275,7 @@ msgstr "เปลี่ยนการตั้งค่า" msgid "Current settings" msgstr "ค่าที่ถูกตั้งปัจจุบัน" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "ชื่อการแสดงผล" @@ -1358,7 +1359,7 @@ msgstr "อธิบายผลคำสั่ง" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "เวลา" @@ -1452,7 +1453,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "นำเข้า" @@ -1509,7 +1510,7 @@ msgid "Cancel" msgstr "ยกเลิก" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "กำลังโหลด" @@ -1657,10 +1658,10 @@ msgstr "ซ่อนช่องใส่คำค้น SQL" msgid "Show query box" msgstr "แสดงช่องคำค้น SQL" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1670,7 +1671,7 @@ msgstr "แก้ไข" msgid "No rows selected" msgstr "ยังไม่ได้เลือกแถว" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1755,7 +1756,7 @@ msgstr "สารบัญ" msgid "Ignore" msgstr "ข้าม" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "คัดลอก" @@ -1771,7 +1772,7 @@ msgstr "แถวข้อความ" msgid "Polygon" msgstr "รูปหลายเหลี่ยม" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "เรขาคณิต" @@ -2250,31 +2251,31 @@ msgstr "ต่อชั่วโมง" msgid "per day" msgstr "ต่อวัน" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "ไฟล์ตั้งค่า %s ไม่สามารถอ่านได้" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "สิทธิสำหรับไฟล์ตั้งค่าไม่ถูกต้อง ที่ถูกต้องจะต้องแก้ไขได้เฉพาะ root" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "ขนาดตัวอักษร" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "น้อยไปมาก" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2293,7 +2294,7 @@ msgstr "สดมภ์" msgid "Sort:" msgstr "เรียง" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2418,8 +2419,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "พบ %s ผลลัพธ์ที่ตรงในตาราง %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "เปิดดู" @@ -2428,14 +2429,14 @@ msgstr "เปิดดู" msgid "Delete the matches for the %s table?" msgstr "ลบตรงกับที่ตาราง %s หรือไม่?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "ลบ" @@ -2501,47 +2502,36 @@ msgctxt "Last page" msgid "End" msgstr "สุดท้าย" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "ส." - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of rows per page" msgid "Number of rows:" msgstr "ระเบียนต่อหน้า" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "จ." -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "แนวนอน" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "แนวนอน (หมุนหัวเรื่อง)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "แนวตั้ง" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "เรียงโดยคีย์" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2568,97 +2558,97 @@ msgstr "เรียงโดยคีย์" msgid "Options" msgstr "ตัวเลือก" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "ข้อความบางส่วน" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "ทั้งข้อความ" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "รีเลชันแนล สกีมา" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "แสดงเนื้อหาไบนารี" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "แสดงเนื้อหา BLOB" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy msgid "Hide browser transformation" msgstr "การแปลงที่เรียกใช้ได้" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "ข้อความที่รู้จักกันดี" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "ไบนารีที่รู้จักกันดี" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "ลบเรียบร้อยแล้ว" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "ฆ่าทิ้ง" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "ในคำค้น" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "การแสดงผลนี้ จะแสดงเพียงจำนวนข้อมูลนี้เท่านั้น ดูข้อมูลเพิ่มเติมได้ที่ %sdocumentation%s" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "แสดงแถว" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "ทั้งหมด" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "คำค้นใช้เวลา %01.4f วินาที" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2667,8 +2657,8 @@ msgstr "คำค้นใช้เวลา %01.4f วินาที" msgid "With selected:" msgstr "ทำกับที่เลือก:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2679,47 +2669,47 @@ msgstr "ทำกับที่เลือก:" msgid "Check All" msgstr "เลือกทั้งหมด" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "ส่งออก" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "สร้างมุมมอง" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "การดำเนินงานผลแบบสอบถาม" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "แสดง" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "มุมมองเหมือนพิมพ์ (ข้อความแบบเต็ม)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "แสดงสกีมาของ PDF" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "แสดงภาพของข้อมูล GIS" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "ไม่พบลิงก์" @@ -2796,38 +2786,38 @@ msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "ดัชนี" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "เอกลักษณ์" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "กลุ่ม" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "เอกเทศ" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "การตรวจทาน" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "หมายเหตุ" @@ -2860,14 +2850,14 @@ msgstr "ตารางจำลอง (View)" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "โครงสร้าง" @@ -2880,12 +2870,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "ค้นหา" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "แทรก" @@ -3010,15 +3000,15 @@ msgstr[0] "%1$d ระเบียนถูกเพิ่ม" msgid "Error while creating PDF:" msgstr "เกิดข้อผิดพลาดขณะสร้าง PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "ไม่สามารถบันทึกตารางล่าสุด" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "ตารางล่าสุด" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "ไม่มีตารางล่าสุด" @@ -3273,7 +3263,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3635,7 +3625,7 @@ msgstr "" msgid "Max: %s%s" msgstr "ขนาดใหญ่สุด: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3696,7 +3686,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "อินไลน์" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "การทำแฟ้มประวัติ" @@ -3737,50 +3727,50 @@ msgstr "" msgid "Click to toggle" msgstr "คลิกเพื่อสลับ" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "เรียกดูคอมพิวเตอร์ของคุณ:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "ไม่สามารถใช้งาน ไดเรกทอรีที่ตั้งไว้สำหรับอัพโหลดได้" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "ไม่มีไฟล์ที่จะอัพโหลด" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "ลบข้อมูล" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "ดำเนินการ" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "พิมพ์" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "สร้างเมื่อ" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "ปรับปรุงครั้งสุดท้ายเมื่อ" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "ตรวจสอบครั้งสุดท้ายเมื่อ" @@ -3900,60 +3890,60 @@ msgstr "ใช้ประโยชน์ได้" msgid "numeric key detected" msgstr "ตรวจพบคีย์ตัวเลข" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "เพิ่ม" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "ทดสอบ" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "ทั้งสอง" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "ไม่ปรากฏที่ใด" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "ซ้าย" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "ขวา" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "คลิก" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "ดับเบิลคลิก" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "ระงับการใช้อยู่" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "เปิด" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "ไม่ได้ปิดเครื่องหมายคำพูด" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3964,7 +3954,7 @@ msgstr "ไม่ได้ปิดเครื่องหมายคำพู msgid "structure" msgstr "โครงสร้าง" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3974,7 +3964,7 @@ msgstr "โครงสร้าง" msgid "data" msgstr "ข้อมูล" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3986,35 +3976,35 @@ msgstr "ข้อมูล" msgid "structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "รวดเร็ว - แสดงเฉพาะตัวเลือกที่น้อยที่สุดในการกำหนดค่า" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "กำหนดเอง - แสดงตัวเลือกที่เป็นไปได้ทั้งหมดในการกำหนดค่า" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "กำหนดเอง - เหมือนข้างต้น แต่ไม่มีทางเลือกที่รวดเร็ว/กำหนดเอง" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "คำสั่ง INSERT เต็มรูปแบบ" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "แทรกหลายระเบียนในคราวเดียว" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "ทั้งสองอย่าง" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "ไม่ใช้ดังกล่าวข้างต้น" @@ -6030,8 +6020,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "ชื่อผู้ใช้:" @@ -6446,7 +6436,7 @@ msgstr "ฐานข้อมูล" msgid "Table(s):" msgstr "ตาราง" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7028,7 +7018,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)." @@ -7151,11 +7141,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7210,7 +7200,7 @@ msgstr "เพิ่มฟิลด์ใหม่" msgid "Add prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7434,16 +7424,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "กรองฐานข้อมูลตามชื่อ" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "กรองรายการตามชื่อ" @@ -7543,17 +7533,17 @@ msgid "Drop the database (DROP)" msgstr "โยนฐานข้อมูลทิ้ง" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "เฉพาะโครงสร้าง" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ทั้งโครงสร้างและข้อมูล" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "เฉพาะข้อมูล" @@ -8004,7 +7994,7 @@ msgstr "ใส่ชื่อฟิลด์ที่แถวแรก" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8012,7 +8002,7 @@ msgstr "โฮสต์" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8030,7 +8020,7 @@ msgstr "รุ่นของ PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9151,7 +9141,7 @@ msgstr "แอตทริบิวต์" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "เพิ่มเติม" @@ -9324,7 +9314,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "เวอร์ชั่น" @@ -9788,68 +9778,283 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "ไม่พบผู้ใช้ที่เลือกในตารางแสดงสิทธิ" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "เพิ่มผู้ใช้ใหม่เรียบร้อยแล้ว" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "ต่อวินาที" +msgstr[1] "ต่อวินาที" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ใช้อยู่" +msgstr[1] "ใช้อยู่" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "สถิติของแถว" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "เลือกทั้งหมด" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "ชนิดคำค้น" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add new field" +msgid "Add chart" +msgstr "เพิ่มฟิลด์ใหม่" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "เอาฐานข้อมูลออก" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "สถานะของตัวแปร" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "เลือกตาราง" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "เพิ่มผู้ใช้ใหม่" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "คำค้น SQL" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "ส." + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "เรียกใหม่" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "ผลลัพธ์ SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "สร้างโดย" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy msgid "Detailed profile" msgstr "เฉพาะข้อมูล" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "อื่นๆ" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "สถานะ" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "เวลารวม:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "เวลา" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "ปิด" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "เวลา" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "จดคำค้นนี้ไว้" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "ป้ายชื่อ" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9870,10 +10075,6 @@ msgstr "ล้าง" msgid "Bookmark this SQL query:" msgstr "จดคำค้นนี้ไว้" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10011,7 +10212,7 @@ msgstr "ตรวจสอบตารางที่มี overhead" msgid "Sort" msgstr "เรียง" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "ไม่มี" @@ -10179,7 +10380,7 @@ msgstr "มีผล" msgid "Table %1$s has been altered successfully" msgstr "ลบผู้ใช้ที่เลือกไว้เรียบร้อยแล้ว." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10339,7 +10540,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" @@ -10397,7 +10598,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "จีน (ไต้หวัน)" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10472,52 +10673,52 @@ msgstr "สร้าง" msgid "Active options" msgstr "ตัวเลือกตาราง" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Usage" msgid "Page:" msgstr "ใช้งาน" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "นำเข้าไฟล์" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "สร้างดัชนีใหม่" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "ชื่อผู้ใช้" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "ยังไม่ได้เลือกแถว" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10547,7 +10748,7 @@ msgstr "รีเลชันภายใน" msgid "Relation deleted" msgstr "มุมมองรีเลชัน" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10971,206 +11172,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add new field" -msgid "Add chart" -msgstr "เพิ่มฟิลด์ใหม่" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "เอาฐานข้อมูลออก" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "สถานะของตัวแปร" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "เลือกตาราง" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "เพิ่มผู้ใช้ใหม่" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "คำค้น SQL" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "สถิติของแถว" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "เลือกทั้งหมด" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "ชนิดคำค้น" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "ต่อวินาที" -msgstr[1] "ต่อวินาที" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ใช้อยู่" -msgstr[1] "ใช้อยู่" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "ส." - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "เรียกใหม่" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "เพิ่ม/ลบ คอลัมน์ (ฟิลด์)" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12110,28 +12111,28 @@ msgstr "" msgid "Wrong data" msgstr "ไม่มีฐานข้อมูล" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "ที่คั่นหน้า %s ได้ถูกสร้างขึ้น" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "ตรวจสอบ SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12142,21 +12143,11 @@ msgid "" msgstr "" "ตารางนี้ไม่มีสดมภ์ไหนที่เก็บค่าที่แตกต่างกันเสมอ การแก้ไขหรือเพิ่มผ่านตารางจะไม่สามารถบันทึกได้" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "จดคำค้นนี้ไว้" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "ป้ายชื่อ" - #: tbl_chart.php:38 #, fuzzy #| msgid "No data found" @@ -12247,6 +12238,12 @@ msgstr "ค่า" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "ส." + #: tbl_create.php:34 #, fuzzy, php-format msgid "Table %s already exists!" @@ -12397,148 +12394,148 @@ msgstr "เลือกฟิลด์ที่ต้องการแสดง msgid "No column selected." msgstr "ยังไม่ได้เลือกแถว" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "การติดตามเริ่มทำงานแล้ว" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "ไม่มีข้อมูล" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "วันที่" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "ลบการติดตามตารางนี้" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "สร้างเวอร์ชั่น %1$s ของ %2$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "สร้างเวอร์ชั่น" diff --git a/po/tk.po b/po/tk.po index 9ea4f11470..5140191679 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen %s:" msgstr "" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "" @@ -3750,54 +3742,54 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3807,7 +3799,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3817,7 +3809,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3827,31 +3819,31 @@ msgstr "" msgid "structure and data" msgstr "" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -5785,8 +5777,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6172,7 +6164,7 @@ msgstr "" msgid "Table(s):" msgstr "" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -6728,7 +6720,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -6844,11 +6836,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -6893,7 +6885,7 @@ msgstr "" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "" @@ -7115,16 +7107,16 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "" @@ -7220,17 +7212,17 @@ msgid "Drop the database (DROP)" msgstr "" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "" @@ -7634,13 +7626,13 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "" @@ -7654,7 +7646,7 @@ msgstr "" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "" @@ -8680,7 +8672,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -8841,7 +8833,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9286,54 +9278,247 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "" +msgstr[1] "" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9352,10 +9537,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -9481,7 +9662,7 @@ msgstr "" msgid "Sort" msgstr "" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -9637,7 +9818,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "" @@ -9772,7 +9953,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "" @@ -9828,7 +10009,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -9886,39 +10067,39 @@ msgstr "" msgid "Active options" msgstr "" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -9946,7 +10127,7 @@ msgstr "" msgid "Relation deleted" msgstr "" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -10350,186 +10531,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "" -msgstr[1] "" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11446,43 +11447,35 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -msgid "Label:" -msgstr "" - #: tbl_chart.php:38 msgid "No data to display" msgstr "" @@ -11558,6 +11551,10 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -11688,143 +11685,143 @@ msgstr "" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/tr.po b/po/tr.po index 9e8830dc72..af963ee5e1 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-12 11:51+0200\n" "Last-Translator: Burak Yavuz \n" -"Language-Team: Turkish " -"\n" +"Language-Team: Turkish \n" "Language: tr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Arama:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "Arama:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Git" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Anahtar adı" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Açıklama" @@ -107,7 +107,7 @@ msgstr "" "%s dosyası bu sistemde mevcut değil, lütfen daha fazla bilgi için www." "phpmyadmin.net adresini ziyaret edin." -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "Veritabanı %1$s oluşturuldu." @@ -135,7 +135,7 @@ msgstr "Tablo yorumları:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Sütun" @@ -158,7 +158,7 @@ msgstr "Sütun" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Türü" @@ -175,7 +175,7 @@ msgstr "Türü" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Boş" @@ -190,7 +190,7 @@ msgstr "Boş" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Varsayılan" @@ -232,9 +232,9 @@ msgstr "Yorumlar" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Hayır" @@ -259,9 +259,9 @@ msgstr "Hayır" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Evet" @@ -313,7 +313,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tablo" @@ -388,7 +388,7 @@ msgstr "İzlenen tablolar" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Veritabanı" @@ -396,17 +396,17 @@ msgstr "Veritabanı" msgid "Last version" msgstr "Son sürüm" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Oluşturuldu" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Güncellendi" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Durum" @@ -419,7 +419,7 @@ msgstr "Durum" msgid "Action" msgstr "Eylem" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Göster" @@ -428,18 +428,18 @@ msgid "Delete tracking data for this table" msgstr "Bu tablo için izleme verisini sil" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Kaldır" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "aktif" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "aktif değil" @@ -447,11 +447,11 @@ msgstr "aktif değil" msgid "Versions" msgstr "Sürümler" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "İzleme raporu" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Yapı görüntüsü yakalama" @@ -649,7 +649,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "İçe aktarma eklentileri yüklenemedi, lütfen kurulumunuzu kontrol edin!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "Yer imi %s oluşturuldu" @@ -676,7 +676,7 @@ msgstr "" "sınırlarını arttırmadığınız sürece phpMyAdmin'in bu içe aktarmayı " "biteremeyeceği anlamına gelir." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -887,7 +887,7 @@ msgstr "" "Sunucu Suhosin ile çalışıyor. Lütfen olası sorunlar için %sbelgeden%s " "yararlanın." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." @@ -896,7 +896,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Bütün bir veritabanını YOK ETMEK üzeresiniz!" @@ -980,8 +980,8 @@ msgstr "Yetkiler Yeniden Yükleniyor" msgid "Removing Selected Users" msgstr "Seçili Kullanıcılar Kaldırılıyor" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Kapat" @@ -1108,13 +1108,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KiB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MiB" @@ -1153,7 +1153,7 @@ msgid "Traffic" msgstr "Trafik" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "Ayarlar" @@ -1173,13 +1173,14 @@ 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:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Yok" @@ -1279,7 +1280,7 @@ msgstr "Değiştirme ayarları" msgid "Current settings" msgstr "Şu anki ayarlar" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "Çizelge Başlığı" @@ -1365,7 +1366,7 @@ msgstr "Çıktıyı açıkla" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Süre" @@ -1463,7 +1464,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "İçe Aktar" @@ -1520,7 +1521,7 @@ msgid "Cancel" msgstr "İptal" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "Yükleniyor" @@ -1670,10 +1671,10 @@ msgstr "Sorgu kutusunu gizle" msgid "Show query box" msgstr "Sorgu kutusunu göster" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1683,7 +1684,7 @@ msgstr "Düzenle" msgid "No rows selected" msgstr "Seçilen satırlar yok" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1770,7 +1771,7 @@ msgstr "Veri imleci içeriği" msgid "Ignore" msgstr "Yoksay" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "Kopyala" @@ -1786,7 +1787,7 @@ msgstr "Satır dizgisi" msgid "Polygon" msgstr "Poligon" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "Geometri" @@ -2271,32 +2272,32 @@ msgstr "saat başına" msgid "per day" msgstr "gün başına" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "Mevcut yapılandırma dosyası (%s) okunabilir değil." -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "Yapılandırma dosyasında yanlış izinler, herkesçe yazılabilir olmamalıdır!" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Yazı Tipi boyutu" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Küçükten Büyüğe" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2311,7 +2312,7 @@ msgstr "Sütun:" msgid "Sort:" msgstr "Sıralama:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "Göster:" @@ -2426,8 +2427,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%2$s tablosu içerisinde %1$s eşleşme" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Gözat" @@ -2436,14 +2437,14 @@ msgstr "Gözat" msgid "Delete the matches for the %s table?" msgstr "%s tablosu için benzeşenler silinsin mi?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Sil" @@ -2505,41 +2506,32 @@ msgctxt "Last page" msgid "End" msgstr "Son" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "Başlangıç satırı:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Satır sayısı:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "Kip:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "yatay" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "yatay (döndürülmüş başlıklar)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "dikey" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Her %s satırda bir başlıklar" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Anahtara göre sırala" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2566,68 +2558,68 @@ msgstr "Anahtara göre sırala" msgid "Options" msgstr "Seçenekler" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Kısmi metinler" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Tam metinler" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Bağlantılı anahtar" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Bağlantılı görüntü sütunu" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Binari içerikleri göster" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB içerikleri göster" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Binari içerikleri HEX olarak göster" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Tarayıcı dönüşümünü gizle" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Çok İyi Bilinen Metin" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Çok İyi Bilinen Binari" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Satır silindi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Sonlandır" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Yaklaşık olabilir. [doc@faq3-11]SSS 3.11[/doc]'e bakın" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "sorgu içerisinde" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2635,21 +2627,21 @@ msgid "" msgstr "" "Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Gösterilen satırlar" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "toplam" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Sorgu %01.4f san. sürdü" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2658,8 +2650,8 @@ msgstr "Sorgu %01.4f san. sürdü" msgid "With selected:" msgstr "Seçilileri:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2670,45 +2662,45 @@ msgstr "Seçilileri:" msgid "Check All" msgstr "Tümünü Seç" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Dışa Aktar" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Görünüm oluştur" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Sorgu sonuçları işlemleri" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Baskı görünümü" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Baskı görünümü (tüm metinler ile)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Çizelge göster" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "GIS verisini görselleştir" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Bağlantı bulunamadı" @@ -2786,38 +2778,38 @@ msgstr "Tanımlı indeks yok!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "İndeksler" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Benzersiz" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Paketlendi" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Önemlilik" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Karşılaştırma" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Yorum" @@ -2852,14 +2844,14 @@ msgstr "Görünüm" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Yapı" @@ -2872,12 +2864,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Ara" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Ekle" @@ -3001,15 +2993,15 @@ msgstr[0] "%1$d satır eklendi." msgid "Error while creating PDF:" msgstr "PDF oluşturulurken hata:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Son tablo kaydedilemedi" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Son tablolar" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Son tablolar yok" @@ -3249,7 +3241,7 @@ msgid "Maximum rows to plot" msgstr "Çizim için en fazla satır" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Dış değerlere gözat" @@ -3653,7 +3645,7 @@ msgstr "Bir numaralandırma, tanımlanmış değerlerin listesinden seçilir" msgid "Max: %s%s" msgstr "En fazla: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL sorgusu:" @@ -3712,7 +3704,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Sıralı" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profil çıkart" @@ -3751,49 +3743,49 @@ msgstr "%s işlevselliği bilinen bir hata tarafından zarar görmüş, bakını msgid "Click to toggle" msgstr "Değiştirmek için tıklayın" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Bilgisayarınıza gözat:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Web sunucusu gönderme dizininden %s seçin:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Göndermek için hiç dosya yok" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Boşalt" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Çalıştır" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Yazdır" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Oluşturma" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Son güncelleme" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Son kontrol" @@ -3913,54 +3905,54 @@ msgstr "olası kötüye kullanma" msgid "numeric key detected" msgstr "sayısal tuş algılandı" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "Simgeler" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "Metin" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Her ikisi" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Hiçbir yeri" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Sol" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Sağ" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "Tıkla" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "Çift tıkla" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Etkisiz" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Açık" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Kapalı" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3970,7 +3962,7 @@ msgstr "Kapalı" msgid "structure" msgstr "yapı" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3980,7 +3972,7 @@ msgstr "yapı" msgid "data" msgstr "veri" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3990,31 +3982,31 @@ msgstr "veri" msgid "structure and data" msgstr "yapı ve veri" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "tam eklemeler" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "genişletilmiş eklemeler" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "yukarıdakinin ikisi birden" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "yukarıdakinin hiçbiri" @@ -6143,8 +6135,8 @@ msgstr "" "Eğer özel kullanıcı adınız varsa, onu burada belirleyin (varsayılanı " "[kbd]isimsiz'dir[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Kullanıcı Adı" @@ -6554,7 +6546,7 @@ msgstr "Veritabanı(ları):" msgid "Table(s):" msgstr "Tablo(lar):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Satırlar:" @@ -7180,7 +7172,7 @@ msgid "No data found for GIS visualization." msgstr "GIS görselleştirmesi için bulunan veri yok." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 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)." @@ -7300,11 +7292,11 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL sorgusu gösteriliyor" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Eklenen satır id: %1$d" @@ -7349,7 +7341,7 @@ msgstr "Tablo ön eki ekle:" msgid "Add prefix" msgstr "Ön ek ekle" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "Aşağıdaki sorguya çalıştırmak istiyor musunuz?" @@ -7570,16 +7562,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "%s diğer sonuç bulundu" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "veritabanlarını adına göre süz" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "Hızlı Süzgeci Temizle" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "öğeleri adına göre süz" @@ -7675,17 +7667,17 @@ msgid "Drop the database (DROP)" msgstr "Veritabanını kaldır (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Sadece yapı" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Yapı ve veri" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Sadece veri" @@ -8099,13 +8091,13 @@ msgstr "İlk satır içine sütun adlarını koy:" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "Anamakine:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" msgstr "Üretim Zamanı:" @@ -8119,7 +8111,7 @@ msgstr "PHP Sürümü:" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 msgid "Database:" msgstr "Veritabanı:" @@ -8393,7 +8385,6 @@ msgstr "" "düzeltin ve tekrar deneyin." #: libraries/plugins/import/ImportOds.class.php:182 -#| msgid "OpenDocument Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" msgstr "OpenDocument Hesap Tablosu ayrıştırılamadı!" @@ -9243,7 +9234,7 @@ msgstr "Öznitelikler" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Ekstra" @@ -9406,7 +9397,7 @@ msgid "Library" msgstr "Kütüphane" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Sürüm" @@ -9871,54 +9862,270 @@ msgstr "" "sunucunun kullandığı yetkilerden farklı olabilir. Bu durumda devam etmeden " "önce %syetkileri yeniden yüklemeniz%s gerekir." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Seçili kullanıcı yetki tablosunda bulunamadı." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Yeni bir kullanıcı eklediniz." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d saniye" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d dakika" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Günlük istatistikleri" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Seçili zaman aralığı:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Daha iyi gruplama için INSERT ifadelerindeki değişken veriyi kaldır" + +#: libraries/server_status_monitor.lib.php:111 +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." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Sonuçlar sorgu metnine göre gruplandırılır." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Sorgu çözümleyici" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "İzleme Yönergeleri" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin İzleyici sunucu yapılandırmasını uyarlamada ve yoğun sorgularda " +"iz sürme süresinde size yardımcı olabilir. Sonrası için log_output'u " +"'TABLE'a ayarlamanız gerekecektir ve ya slow_query_log ya da general_log " +"etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " +"sunucu yükünü %15'e kadar arttırır." + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Ne yazık ki Veritabanı sunucunuz phpMyAdmin ile veritabanı günlüklerini " +"çözümlemek için gereken tabloları günlüklemeyi desteklemiyor. Tabloyu " +"günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " +"sunucu çizelgeleme özelliklerini kullanabilirsiniz." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "İzleyici kullanımı:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Tarayıcınız tüm görüntülenen çizelgeleri düzenli aralıklarla yenileyecek. " +"'Ayarlar' altında çizelgeleri ekleyebilir ve yenileme oranını " +"değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " +"kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " +"tuşunu basılı tutarak ve çizelge üzerinde kaydırarak ilgili zaman aralığını " +"seçin. Bir kere onaylandı mı, bu, gruplanmış sorguların tablolarını " +"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " +"ifadesine tıklayabilirsiniz." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Lütfen unutmayın:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"general_log'u etkinleştirmek sunucu yükünü %5-15 arttırabilir. Aynı zamanda " +"günlükten oluşturulan istatistiklerin yoğun görev yükü olduğundan haberiniz " +"olsun bu yüzden sadece küçük zaman aralıkları seçmek ve general_log'u " +"etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " +"izlemeyi gerektirmez." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Çizelge ekle" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Hazır çizelge" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Durum değişken(leri)i" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Dizi seç:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Genellikle izlenen" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "veya değişken adını yazın:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Ayırdedici değer olarak görüntüle" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Bir bölen uygula" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Veri değerlerine birimi ekle" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Bu diziyi ekle" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Diziyi temizle" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Çizelgedeki Dizi:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "İzlemeyi başlat" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Yönergeler/Ayarlama" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "Çizelgeleri sürüklemeyi (yeniden düzenlemeyi) bitir" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "Çizelgeleri sürüklemeyi etkinleştir" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Yenileme oranı" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Çizelge sütunu" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Çizelge ayarlaması" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Çizelgelerin ayarlanması tarayıcının yerel deposunda saklanır. Eğer karışık " +"ayarlamalarınız varsa, bunu dışa aktarmak isteyebilirsiniz." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Varsayılana sıfırla" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL sonucu" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 msgid "Generated by:" msgstr "Üreten:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "Ayrıntılı profil" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "Sıra" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" msgstr "Durum" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "Duruma göre özet" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 msgid "Total Time" msgstr "Toplam Süre" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 msgid "% Time" msgstr "% Süre" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "Çağrılar" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 msgid "ø Time" msgstr "ø Süre" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bu SQL sorgusunu işaretle" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "Etiket:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Her kullanıcının bu yer imine erişmesine izin ver" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9937,10 +10144,6 @@ msgstr "Temizle" msgid "Bookmark this SQL query:" msgstr "Bu SQL sorgusunu işaretle:" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Her kullanıcının bu yer imine erişmesine izin ver" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Aynı ismin mevcut yer imini değiştir" @@ -10080,7 +10283,7 @@ msgstr "Ek yükü olan tabloları kontrol et" msgid "Sort" msgstr "Sırala" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Yok" @@ -10234,7 +10437,7 @@ msgstr "Etkili" msgid "Table %1$s has been altered successfully" msgstr "Tablo %1$s başarılı olarak değiştirldi" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Sorgu hatası" @@ -10385,7 +10588,7 @@ msgstr "ZIP arşivinde hata:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "Önemli hata: Rehbere sadece AJAX aracılığıyla erişilebilir" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" @@ -10441,7 +10644,7 @@ msgstr "Küçüğü/büyüğü değiştir" msgid "Toggle relation lines" msgstr "İlgili satırları değiştir" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF şeması için düzenlemeleri içe/dışa aktar" @@ -10499,39 +10702,39 @@ msgstr "Topla" msgid "Active options" msgstr "Aktif seçenekler" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Sayfa oluşturuldu" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sayfa oluşturma başarısız" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 msgid "Page:" msgstr "Sayfa:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Seçili sayfadan içe aktar" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Seçili sayfaya aktar" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Yeni bir sayfa oluştur ve ona aktar" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Yeni sayfa adı: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "Ölçeklemek için içe/dışa aktar:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "önerilir" @@ -10559,7 +10762,7 @@ msgstr "Dahili bağlantı eklendi" msgid "Relation deleted" msgstr "Bağlantı silindi" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Tasarımcı düzenlemelerini kaydetme hatası." @@ -11005,209 +11208,6 @@ msgstr "" "gözlemlemek, veritabanınızı kıyaslamak ve eğer açıkça ölçülebilir bir " "iyileştirilme olmadıysa, değişikliği geri almak olacaktır." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "İzleme Yönergeleri" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin İzleyici sunucu yapılandırmasını uyarlamada ve yoğun sorgularda " -"iz sürme süresinde size yardımcı olabilir. Sonrası için log_output'u " -"'TABLE'a ayarlamanız gerekecektir ve ya slow_query_log ya da general_log " -"etkinleştirilir. Ancak unutmayın, general_log çok fazla veri üretir ve " -"sunucu yükünü %15'e kadar arttırır." - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Ne yazık ki Veritabanı sunucunuz phpMyAdmin ile veritabanı günlüklerini " -"çözümlemek için gereken tabloları günlüklemeyi desteklemiyor. Tabloyu " -"günlükleme MySQL 5.1.6 ve sonrakiler tarafından desteklenir. Yinede hala " -"sunucu çizelgeleme özelliklerini kullanabilirsiniz." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "İzleyici kullanımı:" - -#: server_status_monitor.php:485 -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 "" -"Tarayıcınız tüm görüntülenen çizelgeleri düzenli aralıklarla yenileyecek. " -"'Ayarlar' altında çizelgeleri ekleyebilir ve yenileme oranını " -"değiştirebilirsiniz veya her çizelgenin kendi dişli çark simgesini " -"kullanarak herhangi bir çizelgeyi kaldırabilirsiniz." - -#: server_status_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Günlüklerden sorguları görüntülemek için herhangi bir çizelgede sol fare " -"tuşunu basılı tutarak ve çizelge üzerinde kaydırarak ilgili zaman aralığını " -"seçin. Bir kere onaylandı mı, bu, gruplanmış sorguların tablolarını " -"yükleyecek. Daha fazla çözümlemesi için herhangi bir meydana gelen SELECT " -"ifadesine tıklayabilirsiniz." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Lütfen unutmayın:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"general_log'u etkinleştirmek sunucu yükünü %5-15 arttırabilir. Aynı zamanda " -"günlükten oluşturulan istatistiklerin yoğun görev yükü olduğundan haberiniz " -"olsun bu yüzden sadece küçük zaman aralıkları seçmek ve general_log'u " -"etkisizleştirmek tavsiye edilir ve tablolarını bir defa boşaltmak daha fazla " -"izlemeyi gerektirmez." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Çizelge ekle" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Hazır çizelge" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Durum değişken(leri)i" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Dizi seç:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Genellikle izlenen" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "veya değişken adını yazın:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Ayırdedici değer olarak görüntüle" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Bir bölen uygula" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Veri değerlerine birimi ekle" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Bu diziyi ekle" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Diziyi temizle" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Çizelgedeki Dizi:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Günlük istatistikleri" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Seçili zaman aralığı:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Sadece SELECT,INSERT,UPDATE ve DELETE İfadeleri erişir" - -#: server_status_monitor.php:596 -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_monitor.php:599 -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_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Sonuçlar sorgu metnine göre gruplandırılır." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Sorgu çözümleyici" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d saniye" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d dakika" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "İzlemeyi başlat" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Yönergeler/Ayarlama" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "Çizelgeleri sürüklemeyi (yeniden düzenlemeyi) bitir" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "Çizelgeleri sürüklemeyi etkinleştir" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Yenileme oranı" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Çizelge sütunu" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Çizelge ayarlaması" - -#: server_status_monitor.php:736 -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 "" -"Ç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_monitor.php:750 -msgid "Reset to default" -msgstr "Varsayılana sıfırla" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12299,24 +12299,24 @@ msgstr "Anahtar harf, sayı [em]ve[/em] özel karakterler içermelidir." msgid "Wrong data" msgstr "Yanlış veri" -#: sql.php:216 +#: sql.php:183 #, 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:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "Yer imi oluşturulmadı" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP kodu olarak gösteriliyor" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Oanylı SQL" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " @@ -12325,19 +12325,11 @@ msgstr "" "%s tablosu benzersiz bir sütun içermiyor. Izgara düzenleme, işaretleme " "kutusu, Düzenle, Kopyala ve Sil özellikleri kullanılabilir değil." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`%s` tablosunun indeksleri ile ilgili sorunlar" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bu SQL sorgusunu işaretle" - -#: sql.php:1191 -msgid "Label:" -msgstr "Etiket:" - #: tbl_chart.php:38 msgid "No data to display" msgstr "Görüntülemek için veri yok" @@ -12413,6 +12405,10 @@ msgstr "X Değeri" msgid "Y-Axis label:" msgstr "Y-Ekseni etiketi:" +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "Başlangıç satırı:" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12544,31 +12540,31 @@ msgstr "Görüntülemek için sütun seçin:" msgid "No column selected." msgstr "Seçilen sütun yok." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` tablosu için izleme raporu" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "Sürüm %1$s oluşturuldu, %2$s için izleme aktif." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde devre dışı bırakıldı." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "%1$s için izleme %2$s sürümünde aktif edildi." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL ifadeleri çalıştırıldı." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12577,115 +12573,115 @@ msgstr "" "çalıştırabilirsiniz. Lütfen bunu yapmak için izinlerinizin olduğundan emin " "olun." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Eğer ihtiyacınız yoksa bu iki satırı yorum dışı bırakın." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL ifadeleri dışa aktarıldı. Lütfen dökümü kopyalayın ya da çalıştırın." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Sürüm %s görüntüsü yakalama (SQL kodu)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "İzlenen veri tanımlaması başarılı olarak silindi" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "İzlenen veri işlemesi başarılı olarak silindi" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "İzleme ifadeleri" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" "%4$s %5$s kullanıcısına göre %2$s ile %3$s arası tarihler ile %1$s göster" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Rapordan izlenen veri satırını sil" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Veri yok" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Tarih" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Veri tanımlama ifadesi" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Veri işleme ifadesi" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dökümü (dosya indirme)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL dökümü" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Bu seçenek tablolarınızı ve içerdiği veriyi değiştirecektir." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL yürütme" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "%s olarak dışa aktar" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Sürümleri göster" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "%s için izlemeyi devre dışı bırak" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Hemen devre dışı bırak" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "%s için izlemeyi aktif et" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Hemen aktif et" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "%1$s / %2$s sürümünü oluştur" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Bu veri tanımlama ifadelerini izle:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Bu veri işleme ifadelerini izle:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Sürüm oluştur" @@ -13984,6 +13980,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 0'a ayarlı" +#~ msgid "Headers every %s rows" +#~ msgstr "Her %s satırda bir başlıklar" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/tt.po b/po/tt.po index e89b17690e..7ceed49d62 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:13+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar \n" @@ -46,7 +46,7 @@ msgid "Search:" msgstr "Ezläw" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -72,24 +72,24 @@ msgstr "Ezläw" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "Äydä" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Tezeş adı" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Açıqlama" @@ -106,7 +106,7 @@ msgid "" "for more information." msgstr "" -#: db_create.php:74 +#: db_create.php:60 #, fuzzy, php-format msgid "Database %1$s has been created." msgstr "%s biremlege beterelde." @@ -136,7 +136,7 @@ msgstr "Tüşämä açıqlaması" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Column names" msgid "Column" @@ -161,7 +161,7 @@ msgstr "Alan iseme" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Töre" @@ -178,7 +178,7 @@ msgstr "Töre" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Buş" @@ -193,7 +193,7 @@ msgstr "Buş" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Töpcay" @@ -235,9 +235,9 @@ msgstr "Açıqlama" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Yuq" @@ -262,9 +262,9 @@ msgstr "Yuq" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Äye" @@ -321,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Tüşämä" @@ -407,7 +407,7 @@ msgstr "Tüşämä tikşerü" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Biremlek" @@ -416,18 +416,18 @@ msgstr "Biremlek" msgid "Last version" msgstr "Server söreme" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 #, fuzzy msgid "Created" msgstr "Yarat" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Torış" @@ -440,7 +440,7 @@ msgstr "Torış" msgid "Action" msgstr "Eş" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Kürsät" @@ -449,18 +449,18 @@ msgid "Delete tracking data for this table" msgstr "" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Beter" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "" @@ -469,11 +469,11 @@ msgstr "" msgid "Versions" msgstr "Farsíça" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 #, fuzzy msgid "Structure snapshot" msgstr "Tözeleşen genä" @@ -680,7 +680,7 @@ msgstr "" 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:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "%s digän bitbilge yaratıldı" @@ -702,7 +702,7 @@ msgid "" "won't be able to finish this import unless you increase php time limits." msgstr "" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -919,7 +919,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" cönläläre sünderelgän." @@ -929,7 +929,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:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "" @@ -1032,8 +1032,8 @@ msgstr "Bu xoquqlarnı yöklä" msgid "Removing Selected Users" msgstr "Saylanğan qullanuçı beterü" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "" @@ -1176,13 +1176,13 @@ msgstr "Bayt" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1223,7 +1223,7 @@ msgid "Traffic" msgstr "Taşım" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1247,13 +1247,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Buş" @@ -1353,7 +1354,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:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1443,7 +1444,7 @@ msgstr "SQL Centekläw" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Waqıt" @@ -1553,7 +1554,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Yökläw" @@ -1618,7 +1619,7 @@ msgid "Cancel" msgstr "" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy msgid "Loading" msgstr "Cirle" @@ -1802,10 +1803,10 @@ msgstr "SQL-soraw" msgid "Show query box" msgstr "SQL-soraw" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1815,7 +1816,7 @@ msgstr "Tözätü" msgid "No rows selected" msgstr "Kertemnär sayladı" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1907,7 +1908,7 @@ msgstr "Data pointer olılığı" msgid "Ignore" msgstr "Qarama" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1925,7 +1926,7 @@ msgstr "Yul ara bilgese" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2472,31 +2473,31 @@ msgstr "säğät sayın" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Artıp" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2515,7 +2516,7 @@ msgstr "Alan iseme" msgid "Sort:" msgstr "Tezü" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2646,8 +2647,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%s kileşü bar, %s atlı tüşämädä" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Küzätü" @@ -2657,14 +2658,14 @@ msgstr "Küzätü" msgid "Delete the matches for the %s table?" msgstr "Tüşämä eçtälegen çığaru" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Sal" @@ -2743,48 +2744,36 @@ msgctxt "Last page" msgid "End" msgstr "Azaq" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Şmb" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Alannar sanı" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Dşm" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "yatqırıp" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "yatqırıp (başlıqlar almaşıp)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "bastırıp" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Tamğalanğan soraw cibärü" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Qullanası tezeş" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2812,98 +2801,98 @@ msgstr "Qullanası tezeş" msgid "Options" msgstr "Eşkärtü" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Partial Texts" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Tulı Mätennär" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 #, fuzzy msgid "Relational key" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational schema" msgid "Relational display column" msgstr "Bäyläneşlär sxeme" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Browser transformation" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Bu yazma salınğan buldı" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Üter" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Törle buluı bar. [doc@faq3-11]YBS 3.11[/doc] qarísı" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "sorawda" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Yazma sanı:" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "tulayım" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Soraw eşkärtü %01.4f sek aldı" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2912,8 +2901,8 @@ msgstr "Soraw eşkärtü %01.4f sek aldı" msgid "With selected:" msgstr "Saylanğannı:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2924,48 +2913,48 @@ msgstr "Saylanğannı:" msgid "Check All" msgstr "Saylap Beter" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Export" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Soraw qaytarmasın eşkärtü" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Bastıru küreneşe" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Bastıru küreneşe (bar mätennär belän)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF schema kürsätü" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Bäyläneş tabılmadı" @@ -3041,38 +3030,38 @@ msgstr "Açqıç bilgelänmäde!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Tezeşlär" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Qabatsız" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Qabatlanu sanı" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Tezü cayı" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 #, fuzzy msgid "Comment" msgstr "Açıqlama" @@ -3106,14 +3095,14 @@ msgstr "Qaraş" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Tözeleş" @@ -3126,12 +3115,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Ezläw" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Östäw" @@ -3265,18 +3254,18 @@ msgstr[1] "Kertemnär sayladı" msgid "Error while creating PDF:" msgstr "Eçtälekne uqu xoquqı." -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save recent table" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy msgid "Recent tables" msgstr "Berär genä dä tüşämä yuq" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy msgid "There are no recent tables" msgstr "Tüşämä tikşerü" @@ -3526,7 +3515,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3881,7 +3870,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Max: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3944,7 +3933,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Engine" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "" @@ -3983,50 +3972,50 @@ msgstr "" msgid "Click to toggle" msgstr "" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, 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/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 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/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Buşat" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Bastır" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Yasalışı" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Soñğı yañartılu" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Soñğı tikşerü" @@ -4147,60 +4136,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Tıq" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Kiläse" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Sünek" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Unclosed quote" msgid "Closed" msgstr "Yabılmağan cäyä" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4211,7 +4200,7 @@ msgstr "Yabılmağan cäyä" msgid "structure" msgstr "Tözeleş" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4221,7 +4210,7 @@ msgstr "Tözeleş" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4233,35 +4222,35 @@ msgstr "" msgid "structure and data" msgstr "Tözeleşen dä, eçtälegen dä" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Tulayım östise" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Kiñäytep östise" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6343,8 +6332,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 #, fuzzy msgid "Username" msgstr "Atama:" @@ -6764,7 +6753,7 @@ msgstr "Biremleklär" msgid "Table(s):" msgstr "Tüşämä" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7374,7 +7363,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı." @@ -7499,12 +7488,12 @@ 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:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 #, fuzzy msgid "Showing SQL query" msgstr "Tulı Sorawlar Kürsät" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7559,7 +7548,7 @@ msgstr "Tüşämä eçtälegen bu biremlektäge belän alamştırası" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7782,18 +7771,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "tüşämä adı" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7902,17 +7891,17 @@ msgid "Drop the database (DROP)" msgstr "Biremleklär yuq" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Tözeleşen genä" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Tözeleşen dä, eçtälegen dä" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Eçtälegen genä" @@ -8370,7 +8359,7 @@ msgstr "Berençe yulda alannarnıñ iseme çığarası" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8378,7 +8367,7 @@ msgstr "Host" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8396,7 +8385,7 @@ msgstr "PHP Söreme" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9579,7 +9568,7 @@ msgstr "Üzençälek" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Östämä" @@ -9754,7 +9743,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 #, fuzzy msgid "Version" msgstr "Farsíça" @@ -10228,65 +10217,280 @@ msgstr "" "alardan ayırıla ala. Andí çaqlarda, dawam itü aldınnan, %sxoquqlarnı qabat " "yökläp alası%s." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Bu qullanuçı xoquqlar tüşämä eçendä tabılmadı." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Yana qullanuçı östälände." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekund sayın" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "totıla" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +msgid "Log statistics" +msgstr "Kerem Nöfüse" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Tüşämä Saylaw" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Soraw töre" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add %s field(s)" +msgid "Add chart" +msgstr "%s alan östäw" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Biremlekne bolay atap quy" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Tüşämä Saylaw" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Tüşämä adı yaraqsız" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +msgid "Add this series" +msgstr "Yaña qullanuçı östäw" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +msgid "Series in Chart:" +msgstr "SQL-soraw" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Şmb" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Yañart" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "Add/Delete Field Columns" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL qaytarışı" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Ürçätkeç:" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data files" msgid "Detailed profile" msgstr "Eçtälek bireme" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy msgid "State" msgstr "Torış" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Tulayım" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Waqıt" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Waqıt" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Bu SQL-sorawğa tamğa quy" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Yarlıq" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10308,10 +10512,6 @@ msgstr "Täqwim" msgid "Bookmark this SQL query:" msgstr "Bu SQL-sorawğa tamğa quy" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Şulay uq atalğan bitbilgelärne almaştırası" @@ -10444,7 +10644,7 @@ msgstr "Check overheaded" msgid "Sort" msgstr "Tezü" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -10613,7 +10813,7 @@ msgstr "Uñışlı" msgid "Table %1$s has been altered successfully" msgstr "Saylanğan qullanuçını beterü uñışlı uzdı." -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query type" msgid "Query error" @@ -10785,7 +10985,7 @@ msgstr "ZIP-tuplama eçendä xata:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Üzgärtülär saqlandı" @@ -10844,7 +11044,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "Ğädäti Çinçä" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10918,52 +11118,52 @@ msgstr "Yarat" msgid "Active options" msgstr "Tüşämä köyläneşe" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 #, fuzzy msgid "Page has been created" msgstr "\"%s\" atlı tüşämä beterelde" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "bit" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Biremdän alu" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "No rows selected" msgid "Export to selected page" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yaña tezeş yaratu" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "İreşü iseme" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "No rows selected" msgid "Export/Import to scale:" msgstr "Kertemnär sayladı" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10993,7 +11193,7 @@ msgstr "Eçke bäyläneş" msgid "Relation deleted" msgstr "Bäyläneşkä küzätü" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11418,206 +11618,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add %s field(s)" -msgid "Add chart" -msgstr "%s alan östäw" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Biremlekne bolay atap quy" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Tüşämä Saylaw" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Tüşämä adı yaraqsız" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -msgid "Add this series" -msgstr "Yaña qullanuçı östäw" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -msgid "Series in Chart:" -msgstr "SQL-soraw" - -#: server_status_monitor.php:584 -#, fuzzy -msgid "Log statistics" -msgstr "Kerem Nöfüse" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Tüşämä Saylaw" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Soraw töre" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekund sayın" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "totıla" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Şmb" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Yañart" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "Add/Delete Field Columns" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12576,49 +12576,39 @@ msgstr "" msgid "Wrong data" msgstr "Biremleklär yuq" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "%s digän bitbilge yaratıldı" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL'nı Tikşer" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, 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:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Bu SQL-sorawğa tamğa quy" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Yarlıq" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12711,6 +12701,12 @@ msgstr "Bäyä" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Şmb" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12860,148 +12856,148 @@ msgstr "Kürsätäse Alan saylaw" msgid "No column selected." msgstr "Kertemnär sayladı" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Allows inserting and replacing data." msgid "Delete tracking data row from report" msgstr "Eçtälek östäw/almaştıru xoquqı." -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Biremleklär yuq" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 #, fuzzy msgid "Date" msgstr "Eçtälek" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, fuzzy, php-format msgid "Export as %s" msgstr "Çığaru ısulı" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format msgid "Create version %1$s of %2$s" msgstr "Server söreme" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 #, fuzzy msgid "Create version" msgstr "Server söreme" @@ -14217,6 +14213,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "" +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Tamğalanğan soraw cibärü" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/ug.po b/po/ug.po index ec1d3fc026..0888294f16 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2012-11-05 10:16+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur %2$s" msgstr[0] "%s ئۇيغۇنلۇق تىپىلدى، جەدۋىلى %s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "كۆزەت" @@ -2575,14 +2576,14 @@ msgstr "كۆزەت" msgid "Delete the matches for the %s table?" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "ئۆچۈرۈش" @@ -2658,47 +2659,36 @@ msgctxt "Last page" msgid "End" msgstr "ئاخىرقىسى" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Sort" -msgid "Start row:" -msgstr "تۈرلەش" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of columns" msgid "Number of rows:" msgstr "سۆزلەم سانى" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "More" msgid "Mode:" msgstr "تېخىمۇ كۆپ" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2725,91 +2715,91 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial import" msgid "Partial texts" msgstr "بۆلۈپ كىرگۈزىش" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "ئېنىقسىزلىك بولۇشى مۇمكىن. [doc@faq3-11]FAQ 3.11[/doc] غا قاراڭ." -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "ئۇمۇمىي" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2818,8 +2808,8 @@ msgstr "" msgid "With selected:" msgstr "تاللانغىنى:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2830,49 +2820,49 @@ msgstr "تاللانغىنى:" msgid "Check All" msgstr "ھەممىنى تاللاش" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "چىقىرىش" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "بېسىپ كۆرسىتىش" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "بېسىپ چىقىرش كۈرۈلمىسى" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "جەدۋەل ئىزاھى" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "ئۇلىنىشنى تاپالمىدى" @@ -2951,38 +2941,38 @@ msgstr "index قىممىتى بەلگىلەنمىگەن!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "تېزىسلار" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "بىردىنبىر" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "ئىخچام" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "تۈپ سان" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "تاسقاش" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "ئىزاھات" @@ -3015,14 +3005,14 @@ msgstr "قاراش" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "تۈزۈلىشى" @@ -3035,12 +3025,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "ئىزدەش" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "قىستۇرۇش" @@ -3164,19 +3154,19 @@ msgstr[0] "%1$d قۇر قوشۇلدى." msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not save recent table" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Tracked tables" msgid "Recent tables" msgstr "ئىزلانغان جەدۋەل" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "Tracked tables" msgid "There are no recent tables" @@ -3423,7 +3413,7 @@ msgid "Maximum rows to plot" msgstr "" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3773,7 +3763,7 @@ msgstr "" msgid "Max: %s%s" msgstr "ئەڭ چوڭ:%s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3834,7 +3824,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ئىچكى بىرلىشىش" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "ئاساسىي مەزمۇن" @@ -3877,50 +3867,50 @@ msgstr "" msgid "Click to toggle" msgstr "بىر چىكىپ تاللاڭ" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "كۆرسىتىلگەن مۇندەرىجىگە يۈكلىيەلمىدى" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "تازىلاش" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "يازدۇر" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "قۇرۇش" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "ئاخىرقى يېڭلىنىش" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "ئاخىرقى تەكشۈرۈش" @@ -4041,58 +4031,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "قىستۇرۇش" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "كىيىنكى ئاي" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "تاقالدى" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4102,7 +4092,7 @@ msgstr "" msgid "structure" msgstr "" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4112,7 +4102,7 @@ msgstr "" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4124,31 +4114,31 @@ msgstr "" msgid "structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6137,8 +6127,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6558,7 +6548,7 @@ msgstr "ساندان" msgid "Table(s):" msgstr "جەدۋەل" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7153,7 +7143,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7273,11 +7263,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7330,7 +7320,7 @@ msgstr "جەدۋەلنى ئوڭشاش" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7553,18 +7543,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "سانلىق مەلۇمات جەدىۋېلى ئىسمى" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -7666,17 +7656,17 @@ msgid "Drop the database (DROP)" msgstr "كۆچۈرۈلگەن ساندان" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "تۈزىلىشىنىلا" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "تۈزۈلىشى ۋە ئۇچۇر" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "ئۇچۇرنىلا" @@ -8120,7 +8110,7 @@ msgstr "خەت ئايرىش بەلگىسى" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8128,7 +8118,7 @@ msgstr "ئاساسىي ماشىنا" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8146,7 +8136,7 @@ msgstr "PHPنۇسخىسى" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9264,7 +9254,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9433,7 +9423,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -9885,66 +9875,278 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "سېكنۇت" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "مىنۇت" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "ھەممىنى تاللاش" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query" +msgid "Query analyzer" +msgstr "تەكشۈرۈش" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Routines" +msgid "Add chart" +msgstr "دائىملىق" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select All" +msgid "Select series:" +msgstr "ھەممىنى تاللاش" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Routines" +msgid "Add this series" +msgstr "دائىملىق" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "يېڭلاش" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete columns" +msgid "Chart columns" +msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "ھاسىللاش" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "سانلىق مەلۇمات ھۆججىتىنىڭ ئېشىش چوڭ-كىچىكلىكى" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Sat" msgid "State" msgstr "شەنبە" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "يىغىندىسى" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "ۋاقىت" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 msgid "Calls" msgstr "" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "ۋاقىت" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "ئاچقۇچلۇق ئېمزا" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9963,10 +10165,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10094,7 +10292,7 @@ msgstr "مەزمۇن بارلارنى تاللاش" msgid "Sort" msgstr "تۈرلەش" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10254,7 +10452,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Query" msgid "Query error" @@ -10404,7 +10602,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "ئۆزگەرتىشلەر ساقلاندى" @@ -10460,7 +10658,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10536,43 +10734,43 @@ msgstr "قۇرۇش" msgid "Active options" msgstr "ئامال" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "بەت سانى" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "Keyname" msgid "New page name: " msgstr "قىممەت ئىسمى" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10602,7 +10800,7 @@ msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" msgid "Relation deleted" msgstr ".باغلانمىلار ئۆچۈرۈلدى" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "ساقلاشتا خاتالىق كۆرۈلدى." @@ -11014,203 +11212,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Routines" -msgid "Add chart" -msgstr "دائىملىق" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "ئۆزگەرتىلگەن ساندان ئىسمى" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select All" -msgid "Select series:" -msgstr "ھەممىنى تاللاش" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Routines" -msgid "Add this series" -msgstr "دائىملىق" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "ھەممىنى تاللاش" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query" -msgid "Query analyzer" -msgstr "تەكشۈرۈش" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "سېكنۇت" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "مىنۇت" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -msgid "Enable charts dragging" -msgstr "" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "يېڭلاش" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete columns" -msgid "Chart columns" -msgstr "سۆزلەم قوشۇش\\ئۆچۈرۈش" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12139,47 +12140,37 @@ msgstr "" msgid "Wrong data" msgstr "" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "قۇرۇلغان خەتكۈچ %s" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "ئاچقۇچلۇق ئېمزا" - # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك #: tbl_chart.php:38 #, fuzzy @@ -12272,6 +12263,12 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Sort" +msgid "Start row:" +msgstr "تۈرلەش" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12417,149 +12414,149 @@ msgstr "سۆزلەمنى كۆرسەتمەسلىك" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "ئاكتىپ ئىزلاش" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "سانلىق مەلۇماتنى ئىزقوغلاپ ئۈچۈرۈش" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate now" msgid "Deactivate tracking for %s" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "دەرھال ئىشلىتىشنى توختۇتۇڭ" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version" msgid "Create version %1$s of %2$s" msgstr "نەشىرنى قۇىماق" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "نەشىرنى قۇىماق" diff --git a/po/uk.po b/po/uk.po index eac555ae38..5f2a9b3594 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-02-13 18:54+0200\n" "Last-Translator: Andrey Prokopenko \n" "Language-Team: Ukrainian %2$s" msgstr[2] "%1$s співпадінь у %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Переглянути" @@ -2495,14 +2496,14 @@ msgstr "Переглянути" msgid "Delete the matches for the %s table?" msgstr "Видалити співпадіння для таблиці %s ?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Видалити" @@ -2564,45 +2565,34 @@ msgctxt "Last page" msgid "End" msgstr "Кінець" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "Початковий рядок" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "Число рядків:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mode" msgid "Mode:" msgstr "Режим" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "горизонтальному" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "горизонтальному (повернуті заголовки)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вертикальному" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "Заголовки кожні %s рядків" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Сортувати за ключем" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2629,68 +2619,68 @@ msgstr "Сортувати за ключем" msgid "Options" msgstr "Параметри" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "Часткові тексти" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "Повні тексти" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Ключ відношення" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "Стовпчик відображення зв'язків" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Показати двійковий вміст" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "Показати вміст BLOB-ОБ'ЄКТІВ" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Показувати двійковий вміст як HEX" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "Сховати перетворення" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "Формат WKT (well known text)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "Формат WKB (well known binary)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Рядок видалено" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Вбити" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Може бути приблизним. Дивіться [doc@faq3-11]FAQ 3.11 [/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "по запиту" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2699,21 +2689,21 @@ msgstr "" "Подання має щонайменше цю кількість рядків. Будь-ласка звернітся до " "%sдокументації%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Показано записи" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "всього" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Запит виконувався %01.4f сек" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2722,8 +2712,8 @@ msgstr "Запит виконувався %01.4f сек" msgid "With selected:" msgstr "З відміченими:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2734,45 +2724,45 @@ msgstr "З відміченими:" msgid "Check All" msgstr "Відмітити все" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Експорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "Створити подання" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Операції з результатами запиту" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Версія для друку" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Подання для друку (з повними текстами)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "Відобразити діаграму" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "Візуалізація даних ГІС" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Посилання не знайдено" @@ -2849,38 +2839,38 @@ msgstr "Індекс не визначено!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Індекси" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Унікальне" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Запакований" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Кількість елементів" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Порівняння" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Коментар" @@ -2915,14 +2905,14 @@ msgstr "Подання" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Структура" @@ -2935,12 +2925,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Шукати" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Вставити" @@ -3070,15 +3060,15 @@ msgstr[2] "%1$d рядків вставлено." msgid "Error while creating PDF:" msgstr "Помилка при створенні PDF:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "Неможливо зберегти останню таблицю" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "Нещодавні таблиці" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "Нещодавніх таблиць немає" @@ -3322,7 +3312,7 @@ msgid "Maximum rows to plot" msgstr "Максимальна кількість рядків для побудови графіку" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Огляд зовнішніх значень" @@ -3676,7 +3666,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимум: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3737,7 +3727,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "в рядок" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профілювання" @@ -3776,49 +3766,49 @@ msgstr "На функціональність %s впливає відома п msgid "Click to toggle" msgstr "Клікніть, щоб змінити" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "Переглянути Ваш комп'ютер:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "Виберіть з каталога веб-сервера для відвантаження файлів %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Встановлений Вами каталог для завантаження файлів недоступний" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "Немає файлів для відвантаження" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Очистити" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "Виконати" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Друк" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Створення" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Останнє оновлення" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Остання перевірка" @@ -3938,58 +3928,58 @@ msgstr "можливе використання" msgid "numeric key detected" msgstr "виявлено цифровий ключ" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Вставити" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "Тест" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "Обидва" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "Ніде" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "Лівий" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "Правий" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "заблоковано" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "Відкрити" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "Закрито" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3999,7 +3989,7 @@ msgstr "Закрито" msgid "structure" msgstr "структура" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4009,7 +3999,7 @@ msgstr "структура" msgid "data" msgstr "дані" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4019,31 +4009,31 @@ msgstr "дані" msgid "structure and data" msgstr "структура і дані" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "Швидко - відображати лише мінімальну кількість параметрів налаштування" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "Особливий - відобразити всі можливі параметри налаштування" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "Кастомний - як попередній але без варіантів швидко/кастомно" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "повні вставки" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "розширені вставки" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "обидва попередні" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "жоден з попередніх" @@ -6203,8 +6193,8 @@ msgstr "" "При наявності виділеного імені користувача, пропишіть його тут (по " "замовчуванню використовується [kbd]anonymous[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Ім'я користувача" @@ -6632,7 +6622,7 @@ msgstr "База(и) даних:" msgid "Table(s):" msgstr "Таблиця(ь):" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "Рядки:" @@ -7262,7 +7252,7 @@ msgid "No data found for GIS visualization." msgstr "Дані для візуалізації GIS не знайдені." #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL повернула пустий результат (тобто нуль рядків)." @@ -7383,11 +7373,11 @@ msgstr "" "Для переходу від значення до значення використовуйте TAB, або CTRL+стрілки - " "для переміщення куди завгодно" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "Показ SQL-запиту" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Ідентифікатор доданого рядка: %1$d" @@ -7438,7 +7428,7 @@ msgstr "Додати префікс таблиці" msgid "Add prefix" msgstr "Додати префікс" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7663,18 +7653,18 @@ msgstr[0] "" msgstr[1] "" msgstr[2] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Alter table order by" msgid "filter databases by name" msgstr "Змінити порядок таблиці" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Alter table order by" msgid "filter items by name" @@ -7790,17 +7780,17 @@ msgid "Drop the database (DROP)" msgstr "Знищити базу даних (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Лише структуру" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Структуру і дані" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Лише дані" @@ -8223,7 +8213,7 @@ msgstr "Помістити імена колонок в перший рядок" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8231,7 +8221,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8249,7 +8239,7 @@ msgstr "Версія PHP" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9408,7 +9398,7 @@ msgstr "Атрибути" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Додатково" @@ -9573,7 +9563,7 @@ msgid "Library" msgstr "Бібліотека" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версія" @@ -10052,71 +10042,296 @@ msgstr "" "сервером, якщо в цю таблицю вносилися зміни вручну. У цьому випадку Вам " "необхідно %sперезавантажити права%s перед продовженням." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Вказаного користувача не знайдено в таблиці прав." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Ви додали нового користувача." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d секунда" +msgstr[1] "%d секунди" +msgstr[2] "%d секунд" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d хвилина" +msgstr[1] "%d хвилини" +msgstr[2] "%d хвилин" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "Статистика журналу" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "Обраний проміжок часу:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "Виконувати лише вирази SELECT, INSERT, UPDATE і DELETE" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "Для кращого групування, видалити данні змінної у виразах INSERT" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "Оберіть, з якого журналу має генеруватися статистика." + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "Результати, згруповані за текстом запиту." + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "Аналіз запиту" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "Інструкції моніторингу" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin моніторинг може допомогти вам в оптимізації налаштувань сервера і " +"відстеженні часово інтенсивних запитів. Для останнього необхідно встановити " +"log_output у 'TABLE' і увімкнути або директиву slow_query_log, або " +"general_log. Зауважимо, однак, що general_log виробляє велику кількість " +"даних і збільшує навантаження на сервер до 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"Нажаль, ваш сервер бази даних не підтримує журналювання в таблицю, яка є " +"необхідною умовою для аналізу журналів бази даних за допомогою PhpMyAdmin. " +"Журналювання в таблицю підтримуються MySQL 5.1.6 і вище. Однак, залишається " +"можливість використовувати функції графіків сервера." + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "Використання моніторингу:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"Ваш браузер буде оновлювати всі відображувані графіки через певні проміжки " +"часу. В розділі"Налаштування" можна додавати графіки і змінювати " +"частоту їх оновлення, або видаляти графіки використовуючи відповідну іконку " +"на кожному з них." + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"Для відображення запитів з журналів, виберіть відповідний проміжок часу на " +"будь-якому графіку, натиснувши ліву кнопку миші і позначивши його. Після " +"підтвердження, буде завантажена таблиця згрупованих запитів, де можна " +"клацнути на будь-які вирази SELECT для їх подальшого аналізу." + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "Зверніть увагу:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"Увімкнення директиви general_log може збільшити навантаження на сервер на " +"5-15%. Також пам'ятайте, що генерування статистики з журналів є досить " +"інтенсивною задачею, тому бажано вибрати лише невеликий проміжок часу і " +"вимикати директиву general_log і чистити таблицю щойно в моніторингу більше " +"не має потреби." + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "Додати діаграму" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "Вбудований графік" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "Статусні змінні" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "Виберіть серії:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "Часто застосовуваний моніторинг" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "або введіть назву змінної:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "Показати як значення різниці" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "Застосувати дільник" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "Додати до значень одиниці виміру" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "Додати ці серії" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "Очистити серії" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "Серії в графіку:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "Запустити монітор" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "Інструкції/Налаштування" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "Впорядкування/редагування діаграм завершено" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Включити підсвічування" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "Частота оновлення" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "Діаграма стовпців" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "Розташування діаграми" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"Розташування діаграм зберігаються у локальному сховищі браузерів. Його можна " +"експортувати, якщо при налаштуванні виникають складнощі." + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "Скинути до початкових значень" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "Результат SQL" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Згенеровано" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Розмір виростання файлу даних" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "Інше" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "Старт" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "Загальний час:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Час" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Закрити" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Час" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Закладка на даний SQL запит" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Мітка" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Надати всім користувачам доступ до цієї закладки" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10137,10 +10352,6 @@ msgstr "Очистити" msgid "Bookmark this SQL query:" msgstr "Закладка на даний SQL запит" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Надати всім користувачам доступ до цієї закладки" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Замінити існуючу закладку з таким же ім'ям" @@ -10280,7 +10491,7 @@ msgstr "Перевірити чи мають таблиці накладні в msgid "Sort" msgstr "Посортувати" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "Немає" @@ -10440,7 +10651,7 @@ msgstr "Ефективність" msgid "Table %1$s has been altered successfully" msgstr "Таблицю %1$s було успішно змінено" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "Помилка запиту" @@ -10603,7 +10814,7 @@ msgstr "Помилка в ZIP-архіві:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Модифікації було збережено" @@ -10659,7 +10870,7 @@ msgstr "Переключити маленькі/великі" msgid "Toggle relation lines" msgstr "Змінити лінії зв'язків" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "Імпортувати/Експортувати координати для PDF схеми" @@ -10719,43 +10930,43 @@ msgstr "Загальний" msgid "Active options" msgstr "Активовані опції" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Сторінка була створена" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Створення сторінки обламалось" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "Сторінка" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "Імпорт з вибраної сторінки" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "Експорт у вибрану сторінку" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "Створити нову сторінку та експортувати в неї" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "Нова назва сторінки: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Експорт/Імпорт у масштабі" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "рекомендовано" @@ -10785,7 +10996,7 @@ msgstr "Внутрішній зв'язок доданий" msgid "Relation deleted" msgstr "Зв'язок видалений" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Помилка збереження координат Дизайнера." @@ -11233,216 +11444,6 @@ msgstr "" "початкових налаштувань, якщо не було помічено позитивного покращення в " "роботі." -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "Інструкції моніторингу" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin моніторинг може допомогти вам в оптимізації налаштувань сервера і " -"відстеженні часово інтенсивних запитів. Для останнього необхідно встановити " -"log_output у 'TABLE' і увімкнути або директиву slow_query_log, або " -"general_log. Зауважимо, однак, що general_log виробляє велику кількість " -"даних і збільшує навантаження на сервер до 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"Нажаль, ваш сервер бази даних не підтримує журналювання в таблицю, яка є " -"необхідною умовою для аналізу журналів бази даних за допомогою PhpMyAdmin. " -"Журналювання в таблицю підтримуються MySQL 5.1.6 і вище. Однак, залишається " -"можливість використовувати функції графіків сервера." - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "Використання моніторингу:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"Для відображення запитів з журналів, виберіть відповідний проміжок часу на " -"будь-якому графіку, натиснувши ліву кнопку миші і позначивши його. Після " -"підтвердження, буде завантажена таблиця згрупованих запитів, де можна " -"клацнути на будь-які вирази SELECT для їх подальшого аналізу." - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "Зверніть увагу:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"Увімкнення директиви general_log може збільшити навантаження на сервер на " -"5-15%. Також пам'ятайте, що генерування статистики з журналів є досить " -"інтенсивною задачею, тому бажано вибрати лише невеликий проміжок часу і " -"вимикати директиву general_log і чистити таблицю щойно в моніторингу більше " -"не має потреби." - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "Додати діаграму" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "Вбудований графік" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "Статусні змінні" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "Виберіть серії:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "Часто застосовуваний моніторинг" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "або введіть назву змінної:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "Показати як значення різниці" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "Застосувати дільник" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "Додати до значень одиниці виміру" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "Додати ці серії" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "Очистити серії" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "Серії в графіку:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "Статистика журналу" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "Обраний проміжок часу:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "Виконувати лише вирази SELECT, INSERT, UPDATE і DELETE" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "Для кращого групування, видалити данні змінної у виразах INSERT" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "Оберіть, з якого журналу має генеруватися статистика." - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "Результати, згруповані за текстом запиту." - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "Аналіз запиту" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d секунда" -msgstr[1] "%d секунди" -msgstr[2] "%d секунд" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d хвилина" -msgstr[1] "%d хвилини" -msgstr[2] "%d хвилин" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "Запустити монітор" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "Інструкції/Налаштування" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "Впорядкування/редагування діаграм завершено" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Включити підсвічування" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "Частота оновлення" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "Діаграма стовпців" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "Розташування діаграми" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "Скинути до початкових значень" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -12546,26 +12547,26 @@ msgstr "" msgid "Wrong data" msgstr "Неправильні дані" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "Як стандартний запит на огляд даних використовується закладка \"%s\"." -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "Закладка %s створена" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "Показ у вигляді коду PHP" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "Перевірений SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Features related to the grid " @@ -12578,21 +12579,11 @@ msgstr "" "редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " "не працювати після збереження." -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "Проблеми з індексами таблиці `%s`" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Закладка на даний SQL запит" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Мітка" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -12672,6 +12663,12 @@ msgstr "Значення X" msgid "Y-Axis label:" msgstr "Мітка вісі Y:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "Початковий рядок" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12816,33 +12813,33 @@ msgstr "Виберіть колонку для відображення" msgid "No column selected." msgstr "Рядків не вибрано" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "Звіт про відстеження для таблиці `%s`" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "Трекінг є активним." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "Трекінг є активним." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL вирази виконано." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -12850,116 +12847,116 @@ msgstr "" "Ви можете виконати дамп, створивши і використавши для цього тимчасову базу " "даних. Будь ласка, переконайтеся, що у вас є достатні привілеї." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Закоментуйте ці два рядка, якщо вони не потрібні." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" "SQL вирази експортовано. Будь ласка, скопіюйте дамп або виконайте його." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "Знімок версії %s (SQL код)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "Дані відстеження визначення успішно видалені" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "Дані відстеження маніпуляцій успішно видалено" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Вирази відстеження" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "Видалити рядки даних відстеження із звіту" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "Немає даних" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Дата" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Вираз визначення даних" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Вираз маніпуляції з даними" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL дамп (завантажити файл)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL дамп" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ця опція замінить вашу таблицю і дані в ній." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "Виконання SQL" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "Експортувати як %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Показати версії" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "Видалити дані спостереження для цієї таблиці" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Деактивувати зараз" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Активувати зараз" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "Загальні можливості" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Відстежити наступні вирази визначення даних:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Відстежити наступні вирази маніпуляцій з даними:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Створити версію" @@ -14288,6 +14285,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert встановлений у 0" +#~ msgid "Headers every %s rows" +#~ msgstr "Заголовки кожні %s рядків" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/ur.po b/po/ur.po index b523313a0a..61f76b3c4e 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-06-13 11:20+0200\n" "Last-Translator: Muhammad Kamran \n" "Language-Team: Urdu \n" @@ -42,12 +42,11 @@ msgstr "" "کیا ہو یا آپ کے سلامتی ترتیبات پار دریچہ تازہ کاری میں رکاوٹ بن رہے ہوں۔" #: browse_foreigners.php:182 -#| msgid "Search" msgid "Search:" msgstr "تلاش کريں" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -73,24 +72,24 @@ msgstr "تلاش کريں" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "جائیں" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "کلید نام" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "تفصیل" @@ -110,7 +109,7 @@ msgstr "" "مسل%s نظام میں موجود نہیں ہے، مزید معلومات کے لیے www.phpmyadmin.net پر " "جائیں۔" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "ڈیٹا بیس %1$s بنا دیا گیا" @@ -140,7 +139,7 @@ msgstr "جدول تبصرے" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 #, fuzzy #| msgid "Command" msgid "Column" @@ -165,7 +164,7 @@ msgstr "کالم" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "قِسم" @@ -182,7 +181,7 @@ msgstr "قِسم" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "خالی" @@ -197,7 +196,7 @@ msgstr "خالی" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "طے شدہ" @@ -239,9 +238,9 @@ msgstr "تبصرہ" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "نہیں" @@ -266,9 +265,9 @@ msgstr "نہیں" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "ہاں" @@ -322,7 +321,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "جدول" @@ -406,7 +405,7 @@ msgstr "کھوج شدہ جداول" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "کوائفیہ" @@ -414,17 +413,17 @@ msgstr "کوائفیہ" msgid "Last version" msgstr "آخری نسخہ" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "بنایا" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "تازہ کی گئی" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "حالت" @@ -437,7 +436,7 @@ msgstr "حالت" msgid "Action" msgstr "عمل" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "دکھائیں" @@ -446,18 +445,18 @@ msgid "Delete tracking data for this table" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "چھوڑیں" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "فعال" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "فعال نہیں ہے" @@ -465,11 +464,11 @@ msgstr "فعال نہیں ہے" msgid "Versions" msgstr "نسخے" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "کھوج رپورٹ" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "ساخت تصویر" @@ -683,7 +682,7 @@ msgstr "" msgid "Could not load import plugins, please check your installation!" msgstr "درآمد پلگ ان لوڈ نہیں ہوسکے، اپنی تنصیب کا پڑتال کریں!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "نشانی %s بنایا گیا" @@ -709,7 +708,7 @@ msgstr "" "بہرحال آخری دفعہ کوائف صرفی نہیں ہوا، اس کا مطلب ہے کہ phpMyAdmin اس درآمد " "کو اس وقت تک مکمل نہیں کرسکتا جب تک کہ php وقت حد کو آپ بڑھاتے نہیں۔" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -918,7 +917,7 @@ msgid "" "issues." msgstr "" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" @@ -928,7 +927,7 @@ msgstr "\"DROP DATABASE\" بیانات نااہل ہیں۔" msgid "Do you really want to execute \"%s\"?" msgstr "کیا آپ واقعی چاہتے ہیں" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "آپ ایک مکمل کوائفیہ کو DESTROY کررہے ہیں!" @@ -1023,8 +1022,8 @@ msgstr "استحقاق پھر لوڈ کرتے ہوئے" msgid "Removing Selected Users" msgstr "منتخب صارفین ہٹائے جارہے ہیں" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "بند کریں" @@ -1161,13 +1160,13 @@ msgstr "بائٹ" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "کلو بائٹ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "میگا بائٹ" @@ -1210,7 +1209,7 @@ msgid "Traffic" msgstr "" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "General relation features" msgid "Settings" @@ -1234,13 +1233,14 @@ msgstr "" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "" @@ -1339,7 +1339,7 @@ msgstr "جنرل ریلیشن فیچرز" msgid "Current settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Default" msgid "Chart Title" @@ -1433,7 +1433,7 @@ msgstr "SQL کی تفصیل بتائیں" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "وقت" @@ -1546,7 +1546,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "درآمد" @@ -1613,7 +1613,7 @@ msgid "Cancel" msgstr "منسوخ کریں" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "لوڈ کررہا ہے" @@ -1786,10 +1786,10 @@ msgstr "طلب خانہ چھپائیں" msgid "Show query box" msgstr "طلب خانہ دکھائیں" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1799,7 +1799,7 @@ msgstr "تدوین" msgid "No rows selected" msgstr "" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1889,7 +1889,7 @@ msgstr "" msgid "Ignore" msgstr "نظر انداز کریں" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1907,7 +1907,7 @@ msgstr "سطریں کے آخر میں" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2404,31 +2404,31 @@ msgstr "" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "فانٹ سائز" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "صعودی" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2447,7 +2447,7 @@ msgstr "کالم" msgid "Sort:" msgstr "چھانٹیں" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2572,8 +2572,8 @@ msgstr[0] "%sجدول کے ساتھ مشابہ%s" msgstr[1] "%sجدول کے ساتھ مشابہات%s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "براؤز" @@ -2582,14 +2582,14 @@ msgstr "براؤز" msgid "Delete the matches for the %s table?" msgstr "اس جدول کے مشابہات حذف %s کریں؟" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "حذف" @@ -2667,45 +2667,34 @@ msgctxt "Last page" msgid "End" msgstr "اختتام" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Startup" -msgid "Start row:" -msgstr "ابتدائیہ" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "More" msgid "Mode:" msgstr "مزید" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2732,68 +2721,68 @@ msgstr "" msgid "Options" msgstr "" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "ثنائی مشمولات بطور HEX دکھائیں" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2801,21 +2790,21 @@ msgid "" msgstr "" "اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2824,8 +2813,8 @@ msgstr "" msgid "With selected:" msgstr "مع منتخب:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2836,49 +2825,49 @@ msgstr "مع منتخب:" msgid "Check All" msgstr "تمام پڑتال کریں" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "برآمد" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "چھپائی منظر" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Table comments" msgid "Display chart" msgstr "ٹیبل کمنٹس" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "" @@ -2957,38 +2946,38 @@ msgstr "کوئی اشاریہ موجود نہیں!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "اشاریے" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "منفرد" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "باندھنا" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "درجہ تعلق داری" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "ترتیب" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "تبصرہ" @@ -3023,14 +3012,14 @@ msgstr "نقل جدول" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "ساخت" @@ -3043,12 +3032,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "تلاش" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "داخل کریں" @@ -3175,19 +3164,19 @@ msgstr[1] "%1$d صفیں داخل ہوئیں۔" msgid "Error while creating PDF:" msgstr "" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Could not open file: %s" msgid "Could not save recent table" msgstr "مسل نہیں کھول سکتا: %s" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "حداول کی گنتی کریں" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no files to upload" msgid "There are no recent tables" @@ -3436,7 +3425,7 @@ msgid "Maximum rows to plot" msgstr "دکھانے کے لیے صفوں کی زیادہ سے زیادہ تعداد" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "" @@ -3792,7 +3781,7 @@ msgstr "" msgid "Max: %s%s" msgstr "زیادہ سے زیادہ: %s%s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -3853,7 +3842,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "ان لائن" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "تفصیلات" @@ -3894,49 +3883,49 @@ msgstr "%s ایک نامعلوم نقص سے کام متاثر ہوا, دیکھ msgid "Click to toggle" msgstr "انتخاب کے لیے کلک کریں" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "اپنے کمپیوٹر کو براؤز کریں:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "ویب سرور اپ لوڈ پوشہ سے منتخب کریں %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "اپ لوڈ کام کے لیے سیٹ کیا گیا پوشہ قابل رسائی نہیں ہے" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "خالی" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "چھاپیں" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "بنائیں" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "آخری دفعہ کی تازہ کاری" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "آخری دفعہ کی پڑتال" @@ -4059,58 +4048,58 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Ins" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "اگلا" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "دونوں" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "غیر فعال" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "کھولیں" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "بند ہوا" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4120,7 +4109,7 @@ msgstr "بند ہوا" msgid "structure" msgstr "ساخت" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4130,7 +4119,7 @@ msgstr "ساخت" msgid "data" msgstr "کوائف" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4140,31 +4129,31 @@ msgstr "کوائف" msgid "structure and data" msgstr "ساخت اور کوائف" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "سریع - تشکیل کے کم سے کم اختیارات دکھائیں" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "مخصوص - تشکیل کے تمام اختیارات دکھائیں" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "مخصوص - بالا ی طرح لیکن سریع/مخصوص انتخاب کے بغیر" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "داخل کرنا مکمل ہوا" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "توسیع شدہ داخلے" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "دونوں بالا" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "بالا میں سے کوئی بھی نہیں" @@ -6323,8 +6312,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "" @@ -6738,7 +6727,7 @@ msgstr "ڈیٹا بیس" msgid "Table(s):" msgstr "ٹیبل" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "" @@ -7315,7 +7304,7 @@ msgid "No data found for GIS visualization." msgstr "چارٹ سے متعلق کوئی کوائف نہیں ملا۔" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "" @@ -7437,11 +7426,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "" @@ -7494,7 +7483,7 @@ msgstr "جدول کوائف کو مسل سے بدلیں" msgid "Add prefix" msgstr "" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -7718,18 +7707,18 @@ msgid_plural "%s other results found" msgstr[0] "" msgstr[1] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "Invalid table name" msgid "filter databases by name" msgstr "غلط جدول نام" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "Invalid table name" msgid "filter items by name" @@ -7833,17 +7822,17 @@ msgid "Drop the database (DROP)" msgstr "کوائفیہ چھوڑیں (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "صرف ساخت" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "ساخت اور کوائف" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "کوائف صرف" @@ -8274,13 +8263,13 @@ msgstr "کالم نام پہلے صف میں ڈالیں" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" msgstr "" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generate" msgid "Generation Time:" @@ -8298,7 +8287,7 @@ msgstr "نسخے" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -9420,7 +9409,7 @@ msgstr "" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "" @@ -9591,7 +9580,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "" @@ -10043,66 +10032,290 @@ msgid "" "%sreload the privileges%s before you continue." msgstr "" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "Second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "سیکنڈ" +msgstr[1] "سیکنڈ" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "Minute" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "منٹ" +msgstr[1] "منٹ" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Query statistics" +msgid "Log statistics" +msgstr "طلب شماریات" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select All" +msgid "Selected time range:" +msgstr "سارا منتخب کریں" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Gather errors" +msgid "Query analyzer" +msgstr "نقائص اکھٹی کریں" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Add chart" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Remove database" +msgid "Preset chart" +msgstr "کوائفیہ ہٹائیں" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "SQL queries" +msgid "Select series:" +msgstr "SQL طلب" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "غلط جدول نام" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a New User" +msgid "Add this series" +msgstr "نیا صارف اضافہ کریں" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL طلب" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Startup" +msgid "Start Monitor" +msgstr "ابتدائیہ" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "نمایاں کرنے کو فعال کریں" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "تازہ کریں" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "Add/Delete Field Columns" +msgid "Chart columns" +msgstr "فیلڈ کالمز شامل یا ختم کریں" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "طے شدہ قدر بحال کریں" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generate" msgid "Generated by:" msgstr "بنائیں" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 msgid "Detailed profile" msgstr "" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "ابتدائیہ" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "میزان" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "وقت" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "بند کریں" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "وقت" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label key" +msgid "Label:" +msgstr "سرنامہ کلید" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10121,10 +10334,6 @@ msgstr "" msgid "Bookmark this SQL query:" msgstr "" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "" @@ -10254,7 +10463,7 @@ msgstr "اوور ہیڈ جداول کی پڑتال کریں" msgid "Sort" msgstr "چھانٹیں" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "" @@ -10421,7 +10630,7 @@ msgstr "" msgid "Table %1$s has been altered successfully" msgstr "" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Gather errors" msgid "Query error" @@ -10569,7 +10778,7 @@ msgstr "" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "تبدیلیاں محفوظ ہو چکی ہیں" @@ -10625,7 +10834,7 @@ msgstr "" msgid "Toggle relation lines" msgstr "" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "" @@ -10701,43 +10910,43 @@ msgstr "تخلیق کیا گیا" msgid "Active options" msgstr "عمل" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page number:" msgid "Page:" msgstr "صفحہ نمبر" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "Page number:" msgid "New page name: " msgstr "صفحہ نمبر" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 msgid "Export/Import to scale:" msgstr "" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "" @@ -10767,7 +10976,7 @@ msgstr "اندرونی ریلیشن شامل ہو گیا" msgid "Relation deleted" msgstr "ریلیشن حذف ہو گیا" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "" @@ -11178,215 +11387,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Add chart" -msgstr "فیلڈ کالمز شامل یا ختم کریں" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "کوائفیہ ہٹائیں" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "SQL queries" -msgid "Select series:" -msgstr "SQL طلب" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "غلط جدول نام" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a New User" -msgid "Add this series" -msgstr "نیا صارف اضافہ کریں" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL طلب" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Query statistics" -msgid "Log statistics" -msgstr "طلب شماریات" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select All" -msgid "Selected time range:" -msgstr "سارا منتخب کریں" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Gather errors" -msgid "Query analyzer" -msgstr "نقائص اکھٹی کریں" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "سیکنڈ" -msgstr[1] "سیکنڈ" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "منٹ" -msgstr[1] "منٹ" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Startup" -msgid "Start Monitor" -msgstr "ابتدائیہ" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "نمایاں کرنے کو فعال کریں" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "تازہ کریں" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Add/Delete Field Columns" -msgid "Chart columns" -msgstr "فیلڈ کالمز شامل یا ختم کریں" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "طے شدہ قدر بحال کریں" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -12322,47 +12322,37 @@ msgstr "" msgid "Wrong data" msgstr "کوائف" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "نشانی %s بنایا گیا" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label key" -msgid "Label:" -msgstr "سرنامہ کلید" - #: tbl_chart.php:38 #, fuzzy #| msgid "data" @@ -12454,6 +12444,12 @@ msgstr "" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Startup" +msgid "Start row:" +msgstr "ابتدائیہ" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12602,152 +12598,152 @@ msgstr "کالم دکھانے کے لیے انتخاب کریں" msgid "No column selected." msgstr "" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking is active." msgid "Tracking for %1$s was activated at version %2$s." msgstr "کھوج فعال ہے۔" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "data" msgid "No data" msgstr "کوائف" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Delete tracking data for this table" msgid "Deactivate tracking for %s" msgstr "اس جدول کے لیے کھوج کوائف حذف کریں" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Missing data for %s" msgid "Activate tracking for %s" msgstr "کوائف نہیں ملا برائے %s" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "General relation features" msgid "Create version %1$s of %2$s" msgstr "جنرل ریلیشن فیچرز" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "" diff --git a/po/uz.po b/po/uz.po index b008360209..196a1cfe16 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-04-25 15:48+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek \n" @@ -45,7 +45,7 @@ msgid "Search:" msgstr "Қидириш" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -71,24 +71,24 @@ msgstr "Қидириш" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "OK" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "Индекс номи" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "Тавсифи" @@ -107,7 +107,7 @@ msgstr "" "Ушбу тизимда %s файли мавжуд эмас, мархамат, қўшимча маълумотларни олиш учун " "www.phpmyadmin.net сайтига ташриф буюринг" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "%1$s маълумотлар базаси тузилди." @@ -137,7 +137,7 @@ msgstr "Жадвал изоҳи" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "Устун" @@ -160,7 +160,7 @@ msgstr "Устун" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "Тур" @@ -177,7 +177,7 @@ msgstr "Тур" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "Null" @@ -192,7 +192,7 @@ msgstr "Null" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "Андоза" @@ -234,9 +234,9 @@ msgstr "Изоҳлар" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "Йўқ" @@ -261,9 +261,9 @@ msgstr "Йўқ" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "Ҳа" @@ -317,7 +317,7 @@ msgstr "" #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "Жадвал" @@ -398,7 +398,7 @@ msgstr "Кузатилган жадваллар" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "Маълумотлар базаси" @@ -406,17 +406,17 @@ msgstr "Маълумотлар базаси" msgid "Last version" msgstr "Охирги версия" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "Тузилди" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "Янгиланди" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "Ҳолат" @@ -429,7 +429,7 @@ msgstr "Ҳолат" msgid "Action" msgstr "Амал" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "Кўрсатиш" @@ -438,18 +438,18 @@ msgid "Delete tracking data for this table" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "Ўчириш" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "фаол" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "фаол эмас" @@ -457,11 +457,11 @@ msgstr "фаол эмас" msgid "Versions" msgstr "Версиялар" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "Кузатиш ҳисоботи" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "Тузилма расми" @@ -679,7 +679,7 @@ msgstr "" "Импорт модуллари мавжуд эмас! Ўрнатилган phpMyAdmin нусхасининг libraries/" "export каталогини текширинг." -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "\"%s\" хатчўпи тузилди" @@ -707,7 +707,7 @@ msgstr "" "Одатда, бу ҳол, php-сценарийлар учун ажратилган вақт оширилмагунча " "phpMyAdmin дастури импорт жараёнини якунла олмаслигини билдиради." -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -963,7 +963,7 @@ msgstr "" "Сервер \"Suhosin\" ҳимоя тизимадан фойдаланмоқда. Юзага келган муаммолар " "ечими учун \"%s\"документация\"%s\" га қаранг." -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) буйруғи ўчирилган." @@ -973,7 +973,7 @@ msgstr "\"DROP DATABASE\" (маълумотлар базасини ўчириш) msgid "Do you really want to execute \"%s\"?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "Маълумотлар базаси тўлиқ ЎЧИРИЛАДИ!" @@ -1076,8 +1076,8 @@ msgstr "Привилегиялар қайта юкланмоқда" msgid "Removing Selected Users" msgstr "Белгиланган фойдаланувчиларни ўчириш" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "Ёпиш" @@ -1220,13 +1220,13 @@ msgstr "Байт" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "КБ" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "МБ" @@ -1268,7 +1268,7 @@ msgid "Traffic" msgstr "Трафик" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 #, fuzzy #| msgid "settings" msgid "Settings" @@ -1294,13 +1294,14 @@ msgstr "Тўрга боғлаб қўйиш" msgid "Please add at least one variable to the series" msgstr "" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "Йўқ" @@ -1400,7 +1401,7 @@ msgstr "Бошқа созланишлар" msgid "Current settings" msgstr "танловлар" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 #, fuzzy #| msgid "Report title" msgid "Chart Title" @@ -1496,7 +1497,7 @@ msgstr "Сўров таҳлили" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "Вақт" @@ -1609,7 +1610,7 @@ msgstr "" #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" msgstr "Импорт" @@ -1678,7 +1679,7 @@ msgid "Cancel" msgstr "Бекор қилиш" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 #, fuzzy #| msgid "Load" msgid "Loading" @@ -1867,10 +1868,10 @@ msgstr "SQL сўровлари қутиси" msgid "Show query box" msgstr "SQL сўровлари қутиси" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1880,7 +1881,7 @@ msgstr "Таҳрирлаш" msgid "No rows selected" msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1976,7 +1977,7 @@ msgstr "Маълумотлар файли кўрсатгичи ҳажми" msgid "Ignore" msgstr "Эътибор бермаслик" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "" @@ -1994,7 +1995,7 @@ msgstr "Қаторлар бўлувчиси" msgid "Polygon" msgstr "" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "" @@ -2553,31 +2554,31 @@ msgstr "соатига" msgid "per day" msgstr "" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "Шрифт ўлчами" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "Ўсиш тартибида" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2596,7 +2597,7 @@ msgstr "Устун" msgid "Sort:" msgstr "Сортировка қилиш" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 #, fuzzy #| msgid "Show" msgid "Show:" @@ -2723,8 +2724,8 @@ msgstr[0] "\"%s\" жадвалида ўхшашликлар сони \"%s msgstr[1] "\"%s\" жадвалида ўхшашликлар сони \"%s\" та" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Кўриб чиқиш" @@ -2733,14 +2734,14 @@ msgstr "Кўриб чиқиш" msgid "Delete the matches for the %s table?" msgstr "%s жадвалидаги мосликларни ўчирасизми?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "Ўчириш" @@ -2814,48 +2815,36 @@ msgctxt "Last page" msgid "End" msgstr "Охири" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Бошлаш" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Майдонлар сони " -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Душ" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "горизонтал" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "горизонтал (айлантирилган сарлавҳалар)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "вертикал" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Белгиланган сўровни бажариш" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Индекс бўйича сортировка қилиш" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2882,76 +2871,76 @@ msgstr "Индекс бўйича сортировка қилиш" msgid "Options" msgstr "Параметрлар" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Маълумотларни қисқартириб кўрсатиш" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Маълумотларни кенгайтирилган ҳолда кўрсатиш" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Алоқадор калит" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Алоқадор майдон қиймати" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Иккилик маълумотларни кўрсатиш" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB туридаги маълумотларни кўрсатиш" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Иккилик маълумотларни ўн олтилик шаклда кўрсатиш" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "Ўгириш" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Ёзув ўчирилди" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Тугатиш" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Тахминий бўлиши мумкин. [doc@faq3-11]\"FAQ 3.11\"[/doc]га қаранг" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "сўров бўйича" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2960,21 +2949,21 @@ msgstr "" "Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот " "учун %sдокументацияга%s қаранг." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Ёзувларни кўрсатиш" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "жами" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "Сўров %01.4f секунд вақт олди" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2983,8 +2972,8 @@ msgstr "Сўров %01.4f секунд вақт олди" msgid "With selected:" msgstr "Белгиланганларни:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2995,49 +2984,49 @@ msgstr "Белгиланганларни:" msgid "Check All" msgstr "Барчасини белгилаш" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Экспорт" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "Сўров натижаларини ишлатиш" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Чоп этиш версияси" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Чоп этиш версияси (тўла)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-схемани кўрсатиш" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Алоқа топилмади" @@ -3120,38 +3109,38 @@ msgstr "Индекс белгиланмаган!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Индекслар" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Уникал" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Қисилган" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Элементлар сони" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Таққослаш" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Изоҳ" @@ -3184,14 +3173,14 @@ msgstr "Намойиш" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Тузилиши" @@ -3204,12 +3193,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Қидириш" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Қўйиш" @@ -3343,19 +3332,19 @@ msgstr[1] "%1$d та қаторлар қўйилди." msgid "Error while creating PDF:" msgstr "Маълумотларни чақиришга рухсат беради" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "Жадвалларни санаш" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3613,7 +3602,7 @@ msgid "Maximum rows to plot" msgstr "Кўрсатиладиган қаторларнинг максимал сони" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Ташқи қийматларни кўриб чиқиш" @@ -3971,7 +3960,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Максимал ҳажми: \"%s\"%s\"" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -4036,7 +4025,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Жадвал турлари" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Профиллаштириш" @@ -4081,50 +4070,50 @@ msgstr "" msgid "Click to toggle" msgstr "Танлаш учун сичқонча тугмасини босинг" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Юклаш каталогидан" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Кўрсатилган каталокка юклаб бўлмади" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Тозалаш" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Чоп этиш" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Тузиш" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Охирги янгиланиш" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Охирги текширув" @@ -4258,60 +4247,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Қўйиш" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Кейинги" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Фаолсизлантирилган" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Ёпиш" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4321,7 +4310,7 @@ msgstr "Ёпиш" msgid "structure" msgstr "тузилиш" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4331,7 +4320,7 @@ msgstr "тузилиш" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4343,35 +4332,35 @@ msgstr "" msgid "structure and data" msgstr "Тузилиши ва маълумотлари" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "Тўла қўйиш" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Кенгайтирилган қўйилмалар" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6668,8 +6657,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Фойдаланувчи" @@ -7130,7 +7119,7 @@ msgstr "Маълумотлар базалари" msgid "Table(s):" msgstr "Жадваллар" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7802,7 +7791,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL бўш натижа берди (яъни нольта сатр)." @@ -7936,11 +7925,11 @@ msgid "" msgstr "" "Майдонлараро ўтиш учун TAB тугмаси ёки CTRL+стрелка тугмаларидан фойдаланинг" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL-сўровни кўрсатиш" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Киритилган қатор идентификатори: %1$d" @@ -7997,7 +7986,7 @@ msgstr "Индекс(лар)ни сақлаш" msgid "Add prefix" msgstr "Индекс(лар)ни сақлаш" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8220,18 +8209,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "жадвал номи" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8335,17 +8324,17 @@ msgid "Drop the database (DROP)" msgstr "Маълумотлар базасини ўчириш (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Фақат тузилиши" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Тузилиши ва маълумотлари" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Фақат маълумотлар" @@ -8806,7 +8795,7 @@ msgstr "Майдон номларини биринчи қаторга жойла #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8814,7 +8803,7 @@ msgstr "Хост" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8832,7 +8821,7 @@ msgstr "PHP версиясм" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -10100,7 +10089,7 @@ msgstr "Атрибутлар" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Қўшимча" @@ -10275,7 +10264,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Версия" @@ -10768,68 +10757,294 @@ msgstr "" "маълумотлар сервер томонидан ишлатилаётган привилегиялардан фарқ қилиши " "мумкин. Бу ҳолда %sпривилегияларни қайта юклаш%s керак." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Белгиланган фойдаланувчи привилегиялар жадвалида топилмади." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Сиз янги фойдаланувчи қўшдингиз." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "секундига" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ишлатилмоқда" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Статискани кўрсатиш" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Жадвалларни танланг" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "Сўров тури" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Индекс(лар)ни сақлаш" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Тобе сервер статуси жадвалини кўриш" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Жадвалларни танланг" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Жадвал номи нотўғри" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Янги фойдаланувчи қўшиш" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL сўровлари" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Бошлаш" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Белгилашни ёқиш" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Янгилаш" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR майдонидаги устунлар сони" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Хатоликларни бошқариш:" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Асл қийматларни тиклаш" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL сўрови натижаси" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Тузилган" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Маълумотлар файлларининг ошиш ҳажми" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Бошланғич" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Жами" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Вақт" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Ёпиш" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Вақт" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Ушбу SQL сўровига хатчўп тузиш" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Хатчўп белгиси" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Барча фойдаланувчиларга рухсат бериш" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10850,10 +11065,6 @@ msgstr "Тозалаш" msgid "Bookmark this SQL query:" msgstr "Ушбу SQL сўровига хатчўп тузиш" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Барча фойдаланувчиларга рухсат бериш" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Шу номли хатчўпни алмаштириш" @@ -10992,7 +11203,7 @@ msgstr "Оптималлаштириш лозим бўлгн жадваллар msgid "Sort" msgstr "Сортировка қилиш" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -11164,7 +11375,7 @@ msgstr "Эффективлик" msgid "Table %1$s has been altered successfully" msgstr "%1$s жадвали муваффақиятли ўзгартирилди" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -11339,7 +11550,7 @@ msgstr "Ушбу ZIP архивда хатолик:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "Ўзгариришлар сақланди" @@ -11397,7 +11608,7 @@ msgstr "Тескари кўрсатиш" msgid "Toggle relation lines" msgstr "Алоқани танлаш учун расмда кўрсатилганикаби уланиш нуқтасига босинг:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-схемага/схемадан жадвал координаталарини импорт/экспорт қилиш" @@ -11473,51 +11684,51 @@ msgstr "Тузиш" msgid "Active options" msgstr "Жадвал параметрлари" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Саҳифа тузилди" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Саҳифа тузиб бўлмади" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "саҳифалар сони " -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Файлларни импорт қилиш" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Масштаб" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Янги индекс тузиш" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Фойдаланувчи номи" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Масштаб" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "тавсия этилган" @@ -11547,7 +11758,7 @@ msgstr "Ички алоқа ўрнатилди" msgid "Relation deleted" msgstr "Алоқа ўчирилди" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Координаталарни сақлашда хатолик." @@ -12009,217 +12220,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Индекс(лар)ни сақлаш" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Тобе сервер статуси жадвалини кўриш" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Жадвалларни танланг" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Жадвал номи нотўғри" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Янги фойдаланувчи қўшиш" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL сўровлари" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Статискани кўрсатиш" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Жадвалларни танланг" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "Сўров тури" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "секундига" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ишлатилмоқда" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Бошлаш" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Белгилашни ёқиш" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Янгилаш" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR майдонидаги устунлар сони" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Хатоликларни бошқариш:" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Асл қийматларни тиклаш" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -13394,49 +13394,39 @@ msgstr "Калит ҳарфлар, рақамлар [em]ва[/em] махсус msgid "Wrong data" msgstr "Маълумотлар базаси мавжуд эмас" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "\"%s\" хатчўпи тузилди" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP-код сифатида кўрсатиш" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL тўғрилигини текшириш" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` жадвалидаги индексларда муаммо мавжуд" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Ушбу SQL сўровига хатчўп тузиш" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Хатчўп белгиси" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13532,6 +13522,12 @@ msgstr "Қиймати" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Бошлаш" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13691,34 +13687,34 @@ msgstr "Кўрсатиладиган майдонни танлаш" msgid "No column selected." msgstr "Амални амалга ошириш учун битта ёки бир нечта қаторни танлаш керак." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" жадвали учун кузатув ҳисоботи" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s версия тузилди, \"%s.%s\" ни кузатишш фаоллаштирилган." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" жадвалини кузатиш фаоллаштирилди." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL сўрови бажарилди." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13726,125 +13722,125 @@ msgstr "" "Дампни бажариш учун вақтинчалик база тузинг ё борини ишлатинг. Бунинг учун " "етарли привилегияларга эга бўлишингиз керак." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Агар керак бўлмаса, ушбу икки қатор олдига шарҳ белгисини қўйинг." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL сўрови экспорт қилинди. Дампдан нусха олинг ёки уни бажаринг." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s версия расми (SQL коди)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Кузатиш операторлари" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ни кўрсатиш, %s дан %s санагача, фойдаланувчи %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ушбу жадвал учун кузатув маълумотлари ўчириш" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Маълумотлар базаси мавжуд эмас" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Санани" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Маълумотлар таърифи операторини" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Маълумотларни бошқариш операторини" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL дампи (файлни юклаб олиш)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL дамп" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ушбу танлов жадвал ва унинг таркибини амаштиради." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL бажаруви" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "\"%s\" деб экспорт қилиш" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Версияларни кўрсатиш" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаолсизлантириш" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Ҳозир фаолсизлантириш" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" жадвалини кузатишни фаоллаштириш" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Ҳозир фаоллаштириш" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" жадвалининг %s рақамли версиясини тузиш" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Ушбу маълумотлар таърифи операторларини кузатиш:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Ушбу маълумотлар бошқаруви операторларини кузатиш:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Версиясини тузиш" @@ -15092,6 +15088,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Максимал уланишлар сони " +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Белгиланган сўровни бажариш" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/uz@latin.po b/po/uz@latin.po index 730ea0b526..d2762c743e 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-07 17:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) \"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" msgstr[1] "\"%s\" jadvalida o‘xshashliklar soni \"%s\" ta" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "Ko‘rib chiqish" @@ -2759,14 +2760,14 @@ msgstr "Ko‘rib chiqish" msgid "Delete the matches for the %s table?" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "O‘chirish" @@ -2847,48 +2848,36 @@ msgctxt "Last page" msgid "End" msgstr "Oxiri" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start" -msgid "Start row:" -msgstr "Boshlash" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 #, fuzzy #| msgid "Number of fields" msgid "Number of rows:" msgstr "Maydonlar soni " -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 #, fuzzy #| msgid "Mon" msgid "Mode:" msgstr "Dush" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "gorizontal" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "gorizontal (aylantirilgan sarlavhalar)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "vertikal" -#: libraries/DisplayResults.class.php:933 -#, fuzzy, php-format -#| msgid "Execute bookmarked query" -msgid "Headers every %s rows" -msgstr "Belgilangan so‘rovni bajarish" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "Indeks bo‘yicha sortirovka qilish" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2915,76 +2904,76 @@ msgstr "Indeks bo‘yicha sortirovka qilish" msgid "Options" msgstr "Parametrlar" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 #, fuzzy #| msgid "Partial Texts" msgid "Partial texts" msgstr "Ma`lumotlarni qisqartirib ko‘rsatish" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 #, fuzzy #| msgid "Full Texts" msgid "Full texts" msgstr "Ma`lumotlarni kengaytirilgan holda ko‘rsatish" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "Aloqador kalit" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 #, fuzzy #| msgid "Relational display field" msgid "Relational display column" msgstr "Aloqador maydon qiymati" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "Ikkilik ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "BLOB turidagi ma`lumotlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "Ikkilik ma’lumotlarni o‘n oltilik shaklda ko‘rsatish" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 #, fuzzy #| msgid "Browser transformation" msgid "Hide browser transformation" msgstr "O‘girish" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "Yozuv o‘chirildi" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "Tugatish" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "Taxminiy bo‘lishi mumkin. [doc@faq3-11]\"FAQ 3.11\"[/doc]ga qarang" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "so‘rov bo‘yicha" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" @@ -2993,21 +2982,21 @@ msgstr "" "Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil " "ma`lumot uchun %sdokumentatsiyaga%s qarang." -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "Yozuvlarni ko‘rsatish" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "jami" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "So‘rov %01.4f sekund vaqt oldi" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -3016,8 +3005,8 @@ msgstr "So‘rov %01.4f sekund vaqt oldi" msgid "With selected:" msgstr "Belgilanganlarni:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -3028,49 +3017,49 @@ msgstr "Belgilanganlarni:" msgid "Check All" msgstr "Barchasini belgilash" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "Eksport" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "So‘rov natijalarini ishlatish" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "Chop etish versiyasi" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "Chop etish versiyasi (to‘la)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 #, fuzzy #| msgid "Display PDF schema" msgid "Display chart" msgstr "PDF-sxemani ko‘rsatish" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "Aloqa topilmadi" @@ -3153,38 +3142,38 @@ msgstr "Indeks belgilanmagan!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "Indekslar" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "Unikal" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "Qisilgan" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "Elementlar soni" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "Taqqoslash" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "Izoh" @@ -3217,14 +3206,14 @@ msgstr "Namoyish" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "Tuzilishi" @@ -3237,12 +3226,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "Qidirish" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "Qo‘yish" @@ -3376,19 +3365,19 @@ msgstr[1] "%1$d ta qatorlar qo‘yildi." msgid "Error while creating PDF:" msgstr "Ma`lumotlarni chaqirishga ruxsat beradi" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save recent table" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 #, fuzzy #| msgid "Count tables" msgid "Recent tables" msgstr "Jadvallarni sanash" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 #, fuzzy #| msgid "There are no configured servers" msgid "There are no recent tables" @@ -3646,7 +3635,7 @@ msgid "Maximum rows to plot" msgstr "Ko‘rsatiladigan qatorlarning maksimal soni" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "Tashqi qiymatlarni ko‘rib chiqish" @@ -4004,7 +3993,7 @@ msgstr "" msgid "Max: %s%s" msgstr "Maksimal hajmi: \"%s\"%s\"" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 #, fuzzy #| msgid "SQL query" msgid "SQL query:" @@ -4069,7 +4058,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "Jadval turlari" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "Profillashtirish" @@ -4114,50 +4103,50 @@ msgstr "" msgid "Click to toggle" msgstr "Tanlash uchun sichqoncha tugmasini bosing" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, fuzzy, php-format #| msgid "web server upload directory" msgid "Select from the web server upload directory %s:" msgstr "Yuklash katalogidan" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "Ko‘rsatilgan katalokka yuklab bo‘lmadi" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "Tozalash" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "Chop etish" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "Tuzish" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "Oxirgi yangilanish" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "Oxirgi tekshiruv" @@ -4292,60 +4281,60 @@ msgstr "" msgid "numeric key detected" msgstr "" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "Qo‘yish" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Next" msgid "Text" msgstr "Keyingi" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "Faolsizlantirilgan" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 #, fuzzy #| msgid "Close" msgid "Closed" msgstr "Yopish" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -4355,7 +4344,7 @@ msgstr "Yopish" msgid "structure" msgstr "tuzilish" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -4365,7 +4354,7 @@ msgstr "tuzilish" msgid "data" msgstr "" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -4377,35 +4366,35 @@ msgstr "" msgid "structure and data" msgstr "Tuzilishi va ma`lumotlari" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 #, fuzzy #| msgid "Complete inserts" msgid "complete inserts" msgstr "To‘la qo‘yish" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 #, fuzzy #| msgid "Extended inserts" msgid "extended inserts" msgstr "Kengaytirilgan qo‘yilmalar" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "" @@ -6709,8 +6698,8 @@ msgid "" "kbd])" msgstr "" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "Foydalanuvchi" @@ -7173,7 +7162,7 @@ msgstr "Ma`lumotlar bazalari" msgid "Table(s):" msgstr "Jadvallar" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 #, fuzzy #| msgid "Rows" msgid "Rows:" @@ -7849,7 +7838,7 @@ msgid "No data found for GIS visualization." msgstr "" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)." @@ -7984,11 +7973,11 @@ msgstr "" "Maydonlararo o‘tish uchun TAB tugmasi yoki CTRL+strelka tugmalaridan " "foydalaning" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "SQL-so‘rovni ko‘rsatish" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "Kiritilgan qator identifikatori: %1$d" @@ -8045,7 +8034,7 @@ msgstr "Indеks(lar)ni saqlash" msgid "Add prefix" msgstr "Indеks(lar)ni saqlash" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to execute the following query?" @@ -8268,18 +8257,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 #, fuzzy #| msgid "table name" msgid "filter databases by name" msgstr "jadval nomi" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 #, fuzzy #| msgid "table name" msgid "filter items by name" @@ -8387,17 +8376,17 @@ msgid "Drop the database (DROP)" msgstr "Ushbu bazaga o‘tish" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "Faqat tuzilishi" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "Tuzilishi va ma`lumotlari" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "Faqat ma`lumotlar" @@ -8860,7 +8849,7 @@ msgstr "Maydon nomlarini birinchi qatorga joylashtirish" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -8868,7 +8857,7 @@ msgstr "Xost" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -8886,7 +8875,7 @@ msgstr "PHP versiyasm" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -10161,7 +10150,7 @@ msgstr "Atributlar" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "Qo‘shimcha" @@ -10336,7 +10325,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "Vеrsiya" @@ -10836,68 +10825,294 @@ msgstr "" "ma`lumotlar server tomonidan ishlatilayotgan privilegiyalardan farq qilishi " "mumkin. Bu holda %sprivilegiyalarni qayta yuklash%s kerak." -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "Belgilangan foydalanuvchi privilegiyalar jadvalida topilmadi." -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "Siz yangi foydalanuvchi qo‘shdingiz." -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, fuzzy, php-format +#| msgid "per second" +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "sekundiga" + +#: libraries/server_status_monitor.lib.php:80 +#, fuzzy, php-format +#| msgid "in use" +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "ishlatilmoqda" + +#: libraries/server_status_monitor.lib.php:96 +#, fuzzy +#| msgid "Show statistics" +msgid "Log statistics" +msgstr "Statiskani ko‘rsatish" + +#: libraries/server_status_monitor.lib.php:97 +#, fuzzy +#| msgid "Select Tables" +msgid "Selected time range:" +msgstr "Jadvallarni tanlang" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +#, fuzzy +#| msgid "Query type" +msgid "Query analyzer" +msgstr "So‘rov turi" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +#, fuzzy +#| msgid "Apply index(s)" +msgid "Add chart" +msgstr "Indеks(lar)ni saqlash" + +#: libraries/server_status_monitor.lib.php:211 +#, fuzzy +#| msgid "Rename database to" +msgid "Preset chart" +msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" + +#: libraries/server_status_monitor.lib.php:216 +#, fuzzy +#| msgid "See slave status table" +msgid "Status variable(s)" +msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" + +#: libraries/server_status_monitor.lib.php:219 +#, fuzzy +#| msgid "Select Tables" +msgid "Select series:" +msgstr "Jadvallarni tanlang" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +#, fuzzy +#| msgid "Invalid table name" +msgid "or type variable name:" +msgstr "Jadval nomi noto‘g‘ri" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +#, fuzzy +#| msgid "Add a new server" +msgid "Add this series" +msgstr "Yangi foydalanuvchi qo‘shish" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "" + +#: libraries/server_status_monitor.lib.php:266 +#, fuzzy +#| msgid "SQL queries" +msgid "Series in Chart:" +msgstr "SQL so‘rovlari" + +#: libraries/server_status_monitor.lib.php:287 +#, fuzzy +#| msgid "Start" +msgid "Start Monitor" +msgstr "Boshlash" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "Belgilashni yoqish" + +#: libraries/server_status_monitor.lib.php:321 +#, fuzzy +msgid "Refresh rate" +msgstr "Yangilash" + +#: libraries/server_status_monitor.lib.php:330 +#, fuzzy +#| msgid "CHAR textarea columns" +msgid "Chart columns" +msgstr "CHAR maydonidagi ustunlar soni" + +#: libraries/server_status_monitor.lib.php:346 +#, fuzzy +#| msgid "Error management:" +msgid "Chart arrangement" +msgstr "Xatoliklarni boshqarish:" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +#, fuzzy +#| msgid "Restore default value" +msgid "Reset to default" +msgstr "Asl qiymatlarni tiklash" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL so‘rovi natijasi" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "Tuzilgan" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "Ma`lumotlar fayllarining oshish hajmi" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 msgid "Order" msgstr "" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgid "Startup" msgid "State" msgstr "Boshlang‘ich" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total" msgid "Total Time" msgstr "Jami" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "Vaqt" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "Yopish" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "Vaqt" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "Xatcho‘p belgisi" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "Barcha foydalanuvchilarga ruxsat berish" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -10918,10 +11133,6 @@ msgstr "Tozalash" msgid "Bookmark this SQL query:" msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "Barcha foydalanuvchilarga ruxsat berish" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "Shu nomli xatcho‘pni almashtirish" @@ -11068,7 +11279,7 @@ msgstr "Optimallashtirish lozim bo‘lgn jadvallarni belgilash" msgid "Sort" msgstr "Sortirovka qilish" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 #, fuzzy #| msgid "None" msgctxt "None for default" @@ -11240,7 +11451,7 @@ msgstr "Effektivlik" msgid "Table %1$s has been altered successfully" msgstr "%1$s jadvali muvaffaqiyatli o‘zgartirildi" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 #, fuzzy #| msgid "Ignore errors" msgid "Query error" @@ -11415,7 +11626,7 @@ msgstr "Ushbu ZIP arxivda xatolik:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "O‘zgaririshlar saqlandi" @@ -11474,7 +11685,7 @@ msgid "Toggle relation lines" msgstr "" "Aloqani tanlash uchun rasmda ko‘rsatilganikabi ulanish nuqtasiga bosing:" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "PDF-sxemaga/sxemadan jadval koordinatalarini import/eksport qilish" @@ -11550,51 +11761,51 @@ msgstr "Tuzish" msgid "Active options" msgstr "Jadval parametrlari" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "Sahifa tuzildi" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "Sahifa tuzib bo‘lmadi" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "pages" msgid "Page:" msgstr "sahifalar soni " -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 #, fuzzy #| msgid "Import files" msgid "Import from selected page" msgstr "Fayllarni import qilish" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 #, fuzzy #| msgid "Export/Import to scale" msgid "Export to selected page" msgstr "Masshtab" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 #, fuzzy #| msgid "Create a new index" msgid "Create a page and export to it" msgstr "Yangi indeks tuzish" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 #, fuzzy #| msgid "User name" msgid "New page name: " msgstr "Foydalanuvchi nomi" -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "Masshtab" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "tavsiya etilgan" @@ -11624,7 +11835,7 @@ msgstr "Ichki aloqa o‘rnatildi" msgid "Relation deleted" msgstr "Aloqa o‘chirildi" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "Koordinatalarni saqlashda xatolik." @@ -12094,217 +12305,6 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Apply index(s)" -msgid "Add chart" -msgstr "Indеks(lar)ni saqlash" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Rename database to" -msgid "Preset chart" -msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "Tobе sеrvеr statusi jadvalini ko‘rish" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "Jadvallarni tanlang" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "Jadval nomi noto‘g‘ri" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "Yangi foydalanuvchi qo‘shish" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL so‘rovlari" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "Statiskani ko‘rsatish" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select Tables" -msgid "Selected time range:" -msgstr "Jadvallarni tanlang" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "So‘rov turi" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "per second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "sekundiga" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "in use" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "ishlatilmoqda" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Start" -msgid "Start Monitor" -msgstr "Boshlash" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "Belgilashni yoqish" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "Yangilash" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "CHAR textarea columns" -msgid "Chart columns" -msgstr "CHAR maydonidagi ustunlar soni" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "Xatoliklarni boshqarish:" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "Asl qiymatlarni tiklash" - #: server_status_queries.php:67 #, fuzzy, php-format #| msgid "Customize startup page" @@ -13488,49 +13488,39 @@ msgstr "Kalit harflar, raqamlar [em]va[/em] maxsus belgilarni olishi kerak" msgid "Wrong data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "" -#: sql.php:298 +#: sql.php:266 #, fuzzy #| msgid "Bookmark %s created" msgid "Bookmark not created" msgstr "\"%s\" xatcho‘pi tuzildi" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "PHP-kod sifatida ko‘rsatish" -#: sql.php:847 +#: sql.php:678 #, fuzzy #| msgid "Validate SQL" msgid "Validated SQL" msgstr "SQL to‘g‘riligini tekshirish" -#: sql.php:1101 +#: sql.php:932 #, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." msgstr "" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "`\"%s\"` jadvalidagi indekslarda muammo mavjud" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "Xatcho‘p belgisi" - #: tbl_chart.php:38 #, fuzzy #| msgid "No databases" @@ -13626,6 +13616,12 @@ msgstr "Qiymati" msgid "Y-Axis label:" msgstr "" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start" +msgid "Start row:" +msgstr "Boshlash" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -13787,34 +13783,34 @@ msgid "No column selected." msgstr "" "Amalni amalga oshirish uchun bitta yoki bir nechta qatorni tanlash kerak." -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "\"%s\" jadvali uchun kuzatuv hisoboti" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, fuzzy, php-format #| msgid "Version %s is created, tracking for %s.%s is activated." msgid "Version %1$s was created, tracking for %2$s is active." msgstr "%s vеrsiya tuzildi, \"%s.%s\" ni kuzatishsh faollashtirilgan." -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, fuzzy, php-format #| msgid "Tracking of %s.%s is activated." msgid "Tracking for %1$s was activated at version %2$s." msgstr "\"%s.%s\" jadvalini kuzatish faollashtirildi." -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL so‘rovi bajarildi." -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." @@ -13822,125 +13818,125 @@ msgstr "" "Dampni bajarish uchun vaqtinchalik baza tuzing yo borini ishlating. Buning " "uchun yetarli privilеgiyalarga ega bo‘lishingiz kеrak." -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "Agar kеrak bo‘lmasa, ushbu ikki qator oldiga sharh bеlgisini qo‘ying." -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL so‘rovi eksport qilindi. Dampdan nusxa oling yoki uni bajaring." -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "%s vеrsiya rasmi (SQL kodi)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 #, fuzzy #| msgid "Track these data definition statements:" msgid "Tracking data definition successfully deleted" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 #, fuzzy #| msgid "Track these data manipulation statements:" msgid "Tracking data manipulation successfully deleted" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "Kuzatish opеratorlari" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "\"%s\"ni ko‘rsatish, %s dan %s sanagacha, foydalanuvchi %s %s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 #, fuzzy #| msgid "Delete tracking data for this table" msgid "Delete tracking data row from report" msgstr "Ushbu jadval uchun kuzatuv ma’lumotlari o‘chirish" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 #, fuzzy #| msgid "No databases" msgid "No data" msgstr "Ma`lumotlar bazasi mavjud emas" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "Sanani" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "Ma’lumotlar ta’rifi opеratorini" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "Ma’lumotlarni boshqarish opеratorini" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL dampi (faylni yuklab olish)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL damp" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "Ushbu tanlov jadval va uning tarkibini amashtiradi." -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "SQL bajaruvi" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "\"%s\" dеb eksport qilish" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "Vеrsiyalarni ko‘rsatish" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, fuzzy, php-format #| msgid "Deactivate tracking for %s.%s" msgid "Deactivate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faolsizlantirish" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "Hozir faolsizlantirish" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, fuzzy, php-format #| msgid "Activate tracking for %s.%s" msgid "Activate tracking for %s" msgstr "\"%s.%s\" jadvalini kuzatishni faollashtirish" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "Hozir faollashtirish" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, fuzzy, php-format #| msgid "Create version %s of %s.%s" msgid "Create version %1$s of %2$s" msgstr "\"%s.%s\" jadvalining %s raqamli vеrsiyasini tuzish" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "Ushbu ma’lumotlar ta’rifi opеratorlarini kuzatish:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "Ushbu ma’lumotlar boshqaruvi opеratorlarini kuzatish:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "Vеrsiyasini tuzish" @@ -15189,6 +15185,11 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "Maksimal ulanishlar soni " +#, fuzzy +#~| msgid "Execute bookmarked query" +#~ msgid "Headers every %s rows" +#~ msgstr "Belgilangan so‘rovni bajarish" + #, fuzzy #~| msgid "Search" #~ msgid "Enable reCaptcha" diff --git a/po/zh_CN.po b/po/zh_CN.po index 7e8a6a07db..fcdd0c81a2 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" "PO-Revision-Date: 2013-05-14 06:43+0200\n" "Last-Translator: Randall Fan \n" "Language-Team: Simplified Chinese %2$s" msgstr[0] "在 %2$s 中找到 %1$s 个匹配" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "浏览" @@ -2375,14 +2376,14 @@ msgstr "浏览" msgid "Delete the matches for the %s table?" msgstr "删除 %s 表中所有匹配的记录?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "删除" @@ -2444,43 +2445,32 @@ msgctxt "Last page" msgid "End" msgstr "尾页" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -#, fuzzy -#| msgid "Start row" -msgid "Start row:" -msgstr "起始行" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "记录数:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "模式:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "水平" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "水平 (旋转表头)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "每 %s 行重复表头" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "主键排序" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2507,89 +2497,89 @@ msgstr "主键排序" msgid "Options" msgstr "选项" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "部分内容" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "完整内容" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "关联键" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "关联显示字段" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "显示二进制内容" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "显示 BLOB 内容" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "以十六进制显示二进制内容" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "隐藏浏览器转换" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "文本表达式 (WKT)" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "二进制表达式 (WKB)" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "已删除该行" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "杀死" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "可能接近。参见 [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "查询中" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "该视图最少包含的行数,参见%s文档%s。" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "显示行" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "总计" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "查询花费 %01.4f 秒" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2598,8 +2588,8 @@ msgstr "查询花费 %01.4f 秒" msgid "With selected:" msgstr "选中项:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2610,45 +2600,45 @@ msgstr "选中项:" msgid "Check All" msgstr "全选" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "导出" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" msgstr "新建视图" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "查询结果选项" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "打印预览" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "打印预览 (全文显示)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "显示图表" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" msgstr "可视化 GIS 数据" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "找不到链接" @@ -2723,38 +2713,38 @@ msgstr "没有已定义的索引!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "紧凑" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "基数" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "整理" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "注释" @@ -2787,14 +2777,14 @@ msgstr "视图" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "结构" @@ -2807,12 +2797,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "搜索" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "插入" @@ -2936,15 +2926,15 @@ msgstr[0] "插入了 %1$d 行。" msgid "Error while creating PDF:" msgstr "创建 PDF 时发生错误:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "无法保存最近使用的表" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "最近使用的表" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "没有最近使用的表" @@ -3181,7 +3171,7 @@ msgid "Maximum rows to plot" msgstr "显示的最多行数" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "浏览不相关的值" @@ -3547,7 +3537,7 @@ msgstr "在已定义值列表中取值的枚举类型" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL 查询:" @@ -3606,7 +3596,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "快速编辑" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "性能分析" @@ -3645,49 +3635,49 @@ msgstr "%s 功能受到一个已知的缺陷 (bug) 影响,参见 %s" msgid "Click to toggle" msgstr "点击切换" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "从计算机中上传:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "从网站服务器上传文件夹 %s 中选择:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "用于上传的文件夹出错,无法使用" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "没有可上传的文件" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "清空" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "执行" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "打印" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "创建时间" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "最后更新" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "最后检查" @@ -3802,58 +3792,58 @@ msgstr "可利用" msgid "numeric key detected" msgstr "监测到数值型键" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 #, fuzzy #| msgid "Ins" msgid "Icons" msgstr "插入" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 #, fuzzy #| msgid "Test" msgid "Text" msgstr "测试" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "全部" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "无" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "左侧" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "右侧" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "点击" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "双击" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "已禁用" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "开启" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "关闭" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3863,7 +3853,7 @@ msgstr "关闭" msgid "structure" msgstr "结构" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3873,7 +3863,7 @@ msgstr "结构" msgid "data" msgstr "数据" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3883,31 +3873,31 @@ msgstr "数据" msgid "structure and data" msgstr "结构和数据" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "快速 - 仅显示必须的设置项" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "自定义 - 显示所有可用的设置项" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "自定义 - 不显示 快速/自定义 选择" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "完整插入" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "扩展插入" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "以上兼有" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "以上均不" @@ -5919,8 +5909,8 @@ msgid "" msgstr "" "如果你有自己的用户名,请在这里输入 (默认为 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "用户名" @@ -6333,7 +6323,7 @@ msgstr "数据库:" msgid "Table(s):" msgstr "数据表:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "记录:" @@ -6916,7 +6906,7 @@ msgid "No data found for GIS visualization." msgstr "未找到用于 GIS 可视化的数据。" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查询结果为空 (即零行)。" @@ -7034,11 +7024,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 键跳到下一个数值,或 CTRL+方向键 作随意移动" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "显示 SQL 查询" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7089,7 +7079,7 @@ msgstr "添加表前缀" msgid "Add prefix" msgstr "添加前缀" -#: libraries/mult_submits.inc.php:339 sql.php:416 +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" msgstr "您真的要执行下面的查询吗?" @@ -7310,16 +7300,16 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "找到 %s 条其他结果" -#: libraries/navigation/NavigationTree.class.php:1042 +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" msgstr "根据名称筛选数据库" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "清除快速筛选数据" -#: libraries/navigation/NavigationTree.class.php:1075 +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" msgstr "根据表名筛选" @@ -7417,17 +7407,17 @@ msgid "Drop the database (DROP)" msgstr "删除数据库 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "仅结构" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "结构和数据" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "仅数据" @@ -7846,7 +7836,7 @@ msgstr "首行保存字段名" #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 #, fuzzy #| msgid "Host" msgid "Host:" @@ -7854,7 +7844,7 @@ msgstr "主机" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 #, fuzzy #| msgid "Generation Time" msgid "Generation Time:" @@ -7872,7 +7862,7 @@ msgstr "PHP 版本" #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 +#: libraries/sql.lib.php:412 #, fuzzy #| msgid "Database" msgid "Database:" @@ -8973,7 +8963,7 @@ msgstr "属性" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "额外" @@ -9136,7 +9126,7 @@ msgid "Library" msgstr "库" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "版本" @@ -9592,71 +9582,281 @@ msgstr "" "将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权" "限%s。" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "在权限表内找不到选中的用户。" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "您已添加了一个新用户。" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 秒" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 分" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "日志统计" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "选择时间范围:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "去除 INSERT 语句中的变量值以获得更好的分组" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "请选择生成统计的来源日志。" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "结果将根据查询语句分组。" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "查询分析器" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "监控说明" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" +"phpMyAdmin 监控可以帮助你优化服务期配置并追踪特定查询。要实现追踪查询功能,你" +"需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" +"请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" +"很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" +"的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "使用监控:" + +#: libraries/server_status_monitor.lib.php:167 +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 "" +"您的浏览器将会以一定的频率刷新所有已显示的图表。您可以在'设置'中添加图表或修" +"改刷新频率,您也可以通过每个图表的齿轮图标来删除图表。" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" +"要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" +"示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "请注意:" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" +"启用 general_log 可能会增加 5-15% 的服务器负载。从日志中统计数据同样也是高负" +"载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" +"表。" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "添加图表" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "预置图表" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "状态变量" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "选择数据:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "常用监控" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "或输入变量名:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "独立显示" + +#: libraries/server_status_monitor.lib.php:247 +msgid "Apply a divisor" +msgstr "应用除数" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "在值后附加单位" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "添加该数据" + +#: libraries/server_status_monitor.lib.php:263 +msgid "Clear series" +msgstr "清除所有数据" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "图表中的数据:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "启动监控" + +#: libraries/server_status_monitor.lib.php:294 +msgid "Instructions/Setup" +msgstr "说明/设置" + +#: libraries/server_status_monitor.lib.php:298 +#, fuzzy +#| msgid "Done rearranging/editing charts" +msgid "Done dragging (rearranging) charts" +msgstr "完成排列/编辑图表" + +#: libraries/server_status_monitor.lib.php:317 +#, fuzzy +#| msgid "Enable highlighting" +msgid "Enable charts dragging" +msgstr "启用高亮" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "刷新频率" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "每行图表个数" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "图表排列" + +#: libraries/server_status_monitor.lib.php:349 +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 "" +"图表排列存储在浏览器本地存储。如果你设置了一个复杂的排列,请导出该设置。" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "恢复默认" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL 查询结果" -#: libraries/sql.lib.php:464 +#: libraries/sql.lib.php:416 #, fuzzy #| msgid "Generated by" msgid "Generated by:" msgstr "生成者" -#: libraries/sql.lib.php:495 +#: libraries/sql.lib.php:447 #, fuzzy #| msgid "Data file grow size" msgid "Detailed profile" msgstr "数据文件增长大小" -#: libraries/sql.lib.php:498 +#: libraries/sql.lib.php:450 #, fuzzy #| msgid "Other" msgid "Order" msgstr "其它" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 #, fuzzy #| msgctxt "Start of recurring event" #| msgid "Start" msgid "State" msgstr "起始时间" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 +#: libraries/sql.lib.php:503 #, fuzzy #| msgid "Total time:" msgid "Total Time" msgstr "总时间:" -#: libraries/sql.lib.php:553 +#: libraries/sql.lib.php:505 #, fuzzy #| msgid "Time" msgid "% Time" msgstr "时间" -#: libraries/sql.lib.php:555 +#: libraries/sql.lib.php:507 #, fuzzy #| msgid "Close" msgid "Calls" msgstr "关闭" -#: libraries/sql.lib.php:557 +#: libraries/sql.lib.php:509 #, fuzzy #| msgid "Time" msgid "ø Time" msgstr "时间" +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "将此 SQL 查询加为书签" + +#: libraries/sql.lib.php:681 +#, fuzzy +#| msgid "Label" +msgid "Label:" +msgstr "标签" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "让所有用户均可访问此书签" + #: libraries/sql_query_form.lib.php:188 #, php-format msgid "Run SQL query/queries on server %s" @@ -9677,10 +9877,6 @@ msgstr "清除" msgid "Bookmark this SQL query:" msgstr "将此 SQL 查询加为书签" -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "让所有用户均可访问此书签" - #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" msgstr "替换现有的同名书签" @@ -9815,7 +10011,7 @@ msgstr "仅选择多余" msgid "Sort" msgstr "排序" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "无" @@ -9971,7 +10167,7 @@ msgstr "有效" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" msgstr "查询错误" @@ -10117,7 +10313,7 @@ msgstr "ZIP 包中有错误:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "致命错误:导航只能通过AJAX访问" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "已保存修改" @@ -10173,7 +10369,7 @@ msgstr "反向收缩/展开" msgid "Toggle relation lines" msgstr "显示/隐藏关系线" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "为 PDF 大纲导入/导出坐标" @@ -10233,43 +10429,43 @@ msgstr "聚合" msgid "Active options" msgstr "当前选项" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "已创建页面" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "页面创建失败" -#: pmd_pdf.php:113 +#: pmd_pdf.php:112 #, fuzzy #| msgid "Page" msgid "Page:" msgstr "页面" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "从所选页导入" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "导出至所选页" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "导出至新页" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "新页面名: " -#: pmd_pdf.php:141 +#: pmd_pdf.php:140 #, fuzzy #| msgid "Export/Import to scale" msgid "Export/Import to scale:" msgstr "按比例导出/导入" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "推荐" @@ -10297,7 +10493,7 @@ msgstr "已添加内联关系" msgid "Relation deleted" msgstr "已删除关系" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "保存设计器坐标时出错。" @@ -10720,201 +10916,6 @@ msgstr "" "最好的系统调整方法是一次只修改一个设置,观察并测试您的数据库,如果没有显著的" "效果就撤销改变。" -#: server_status_monitor.php:453 -msgid "Monitor Instructions" -msgstr "监控说明" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" -"phpMyAdmin 监控可以帮助你优化服务期配置并追踪特定查询。要实现追踪查询功能,你" -"需要将 log_output 设置为 'TABLE' 并启用 slow_query_log 或 general_log 功能。" -"请注意,general_log 会产生很多数据并可能增加服务器负载多达 15%" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" -"很遗憾你的数据库服务器不支持日志记录到表,这是使用 phpMyAdmin 分析数据库日志" -"的必要功能。MySQL 自 5.1.6 起有该功能。但你仍然可以使用服务器图表功能。" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "使用监控:" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" -"要从日志中显示查询,请通过按下鼠标左键并拖拽选择一段时间范围。确定后,将会显" -"示出分好组的查询,您可以点击任意 SELECT 查询以进一步分析。" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "请注意:" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" -"启用 general_log 可能会增加 5-15% 的服务器负载。从日志中统计数据同样也是高负" -"载的任务,建议选择一段小范围的时间并在用完监控后禁止 general_log 并清空它的" -"表。" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -msgid "Add chart" -msgstr "添加图表" - -#: server_status_monitor.php:519 -msgid "Preset chart" -msgstr "预置图表" - -#: server_status_monitor.php:523 -msgid "Status variable(s)" -msgstr "状态变量" - -#: server_status_monitor.php:526 -msgid "Select series:" -msgstr "选择数据:" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "常用监控" - -#: server_status_monitor.php:544 -msgid "or type variable name:" -msgstr "或输入变量名:" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "独立显示" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "应用除数" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "在值后附加单位" - -#: server_status_monitor.php:568 -msgid "Add this series" -msgstr "添加该数据" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "清除所有数据" - -#: server_status_monitor.php:573 -msgid "Series in Chart:" -msgstr "图表中的数据:" - -#: server_status_monitor.php:584 -msgid "Log statistics" -msgstr "日志统计" - -#: server_status_monitor.php:585 -msgid "Selected time range:" -msgstr "选择时间范围:" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "仅统计 SELECT、INSERT、UPDATE 和 DELETE 语句" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "去除 INSERT 语句中的变量值以获得更好的分组" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "请选择生成统计的来源日志。" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "结果将根据查询语句分组。" - -#: server_status_monitor.php:606 -msgid "Query analyzer" -msgstr "查询分析器" - -#: server_status_monitor.php:654 -#, php-format -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "%d 秒" - -#: server_status_monitor.php:657 -#, php-format -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "%d 分" - -#: server_status_monitor.php:674 -msgid "Start Monitor" -msgstr "启动监控" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "说明/设置" - -#: server_status_monitor.php:685 -#, fuzzy -#| msgid "Done rearranging/editing charts" -msgid "Done dragging (rearranging) charts" -msgstr "完成排列/编辑图表" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "启用高亮" - -#: server_status_monitor.php:708 -msgid "Refresh rate" -msgstr "刷新频率" - -#: server_status_monitor.php:717 -msgid "Chart columns" -msgstr "每行图表个数" - -#: server_status_monitor.php:733 -msgid "Chart arrangement" -msgstr "图表排列" - -#: server_status_monitor.php:736 -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_monitor.php:750 -msgid "Reset to default" -msgstr "恢复默认" - #: server_status_queries.php:67 #, php-format msgid "Questions since startup: %s" @@ -11920,24 +11921,24 @@ msgstr "短语密码应包含字母、数字[em]和[/em]特殊字符。" msgid "Wrong data" msgstr "无效数据" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用书签 \"%s\" 作为默认的查询。" -#: sql.php:298 +#: sql.php:266 msgid "Bookmark not created" msgstr "未创建书签" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "显示为 PHP 代码" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "已校验的 SQL" -#: sql.php:1101 +#: sql.php:932 #, fuzzy, php-format #| msgid "" #| "This table does not contain a unique column. Grid edit, checkbox, Edit, " @@ -11947,21 +11948,11 @@ msgid "" "and Delete features are not available." msgstr "该表没有唯一字段。单元格编辑、复选框、编辑、复制和删除无法正常使用。" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "数据表 `%s` 的索引存在问题" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "将此 SQL 查询加为书签" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "标签" - #: tbl_chart.php:38 msgid "No data to display" msgstr "没有可显示数据" @@ -12037,6 +12028,12 @@ msgstr "横值" msgid "Y-Axis label:" msgstr "纵坐标名称:" +#: tbl_chart.php:241 +#, fuzzy +#| msgid "Start row" +msgid "Start row:" +msgstr "起始行" + #: tbl_create.php:34 #, php-format msgid "Table %s already exists!" @@ -12173,144 +12170,144 @@ msgstr "选择要显示的字段" msgid "No column selected." msgstr "没有选中任何列。" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追踪报告" -#: tbl_tracking.php:205 +#: tbl_tracking.php:206 #, php-format msgid "Version %1$s was created, tracking for %2$s is active." msgstr "已创建版本 %1$s,%2$s 的追踪已启用。" -#: tbl_tracking.php:222 +#: tbl_tracking.php:223 #, php-format msgid "Tracking for %1$s was deactivated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已停用。" -#: tbl_tracking.php:239 +#: tbl_tracking.php:240 #, php-format msgid "Tracking for %1$s was activated at version %2$s." msgstr "对%1$s 的追踪从版本 %2$s 已启用。" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 语句已执行。" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "你可以通过创建一个临时数据库来执行这个转储。请确保你有足够的权限。" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "如果你不需要,请注释以下两行。" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 语句已导出。请复制保存或运行它。" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 代码)" -#: tbl_tracking.php:454 +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" msgstr "追踪数据定义删除成功" -#: tbl_tracking.php:478 +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" msgstr "追踪数据操作删除成功" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "追踪语句" -#: tbl_tracking.php:524 tbl_tracking.php:672 +#: tbl_tracking.php:525 tbl_tracking.php:673 #, fuzzy, php-format #| msgid "Show %s with dates from %s to %s by user %s %s" msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "显示自 %2$s 起至 %3$s 用户 %4$s 执行的 %1$s %5$s" -#: tbl_tracking.php:532 +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" msgstr "从报告中删除追踪数据" -#: tbl_tracking.php:546 +#: tbl_tracking.php:547 msgid "No data" msgstr "无数据" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "日期" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "数据定义语句" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "数据操作语句" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 转储 (文件下载)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 转储" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "该选项将导致当前表的结构和数据被替换。" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "执行 SQL 语句" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "导出为 %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:824 +#: tbl_tracking.php:825 #, php-format msgid "Deactivate tracking for %s" msgstr "禁用 %s 的追踪" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "立即禁用" -#: tbl_tracking.php:840 +#: tbl_tracking.php:841 #, php-format msgid "Activate tracking for %s" msgstr "启用 %s 的追踪" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "立即启用" -#: tbl_tracking.php:859 +#: tbl_tracking.php:860 #, php-format msgid "Create version %1$s of %2$s" msgstr "为 %2$s 创建版本 %1$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "追踪下列数据定义语句:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "追踪下列数据操作语句:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "创建版本" @@ -13477,6 +13474,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 被设为 0" +#~ msgid "Headers every %s rows" +#~ msgstr "每 %s 行重复表头" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/po/zh_TW.po b/po/zh_TW.po index 2ae2df9e80..0d00545e55 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.1-dev\n" "Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-06-12 09:39+0200\n" -"PO-Revision-Date: 2013-05-29 11:15+0200\n" -"Last-Translator: Chung-Lun Chiang \n" -"Language-Team: Traditional Chinese \n" +"POT-Creation-Date: 2013-06-20 08:22+0200\n" +"PO-Revision-Date: 2013-06-20 16:10+0200\n" +"Last-Translator: Tony Chen \n" +"Language-Team: Traditional Chinese " +"\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -44,7 +44,7 @@ msgid "Search:" msgstr "搜尋:" #: browse_foreigners.php:186 gis_data_editor.php:396 js/messages.php:209 -#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1657 +#: libraries/DbSearch.class.php:455 libraries/DisplayResults.class.php:1654 #: libraries/TableSearch.class.php:1142 libraries/core.lib.php:556 #: libraries/display_change_password.lib.php:94 #: libraries/display_create_table.lib.php:61 @@ -70,24 +70,24 @@ msgstr "搜尋:" #: libraries/server_privileges.lib.php:1479 #: libraries/server_privileges.lib.php:1971 #: libraries/server_privileges.lib.php:2563 -#: libraries/server_privileges.lib.php:3091 +#: libraries/server_privileges.lib.php:3090 #: libraries/sql_query_form.lib.php:378 libraries/sql_query_form.lib.php:435 #: libraries/sql_query_form.lib.php:500 libraries/structure.lib.php:1582 -#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:151 +#: libraries/tbl_columns_definition_form.inc.php:754 pmd_pdf.php:150 #: prefs_manage.php:272 prefs_manage.php:322 server_replication.php:224 -#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:521 -#: tbl_tracking.php:684 view_create.php:225 view_operations.php:99 +#: server_replication.php:327 tbl_chart.php:251 tbl_tracking.php:522 +#: tbl_tracking.php:685 view_create.php:225 view_operations.php:99 msgid "Go" msgstr "執行" #: browse_foreigners.php:197 browse_foreigners.php:201 -#: libraries/Index.class.php:561 tbl_tracking.php:382 +#: libraries/Index.class.php:561 tbl_tracking.php:383 msgid "Keyname" msgstr "鍵名" #: browse_foreigners.php:198 browse_foreigners.php:200 -#: libraries/server_collations.lib.php:40 -#: libraries/server_collations.lib.php:52 libraries/server_plugins.lib.php:133 +#: libraries/server_collations.lib.php:36 +#: libraries/server_collations.lib.php:48 libraries/server_plugins.lib.php:133 #: server_engines.php:72 server_status_variables.php:234 msgid "Description" msgstr "說明" @@ -104,7 +104,7 @@ msgid "" "for more information." msgstr "找不到檔案 %s,詳情請參考 www.phpmyadmin.net。" -#: db_create.php:74 +#: db_create.php:60 #, php-format msgid "Database %1$s has been created." msgstr "建立資料庫 %1$s 成功。" @@ -132,7 +132,7 @@ msgstr "表註釋:" #: libraries/schema/Pdf_Relation_Schema.class.php:1362 #: libraries/schema/Pdf_Relation_Schema.class.php:1385 #: libraries/tbl_columns_definition_form.inc.php:353 tbl_printview.php:130 -#: tbl_relation.php:380 tbl_tracking.php:324 tbl_tracking.php:386 +#: tbl_relation.php:380 tbl_tracking.php:325 tbl_tracking.php:387 msgid "Column" msgstr "欄位" @@ -155,7 +155,7 @@ msgstr "欄位" #: libraries/server_privileges.lib.php:1573 libraries/structure.lib.php:776 #: libraries/structure.lib.php:1180 #: libraries/tbl_columns_definition_form.inc.php:96 tbl_printview.php:131 -#: tbl_tracking.php:325 tbl_tracking.php:383 +#: tbl_tracking.php:326 tbl_tracking.php:384 msgid "Type" msgstr "類型" @@ -172,7 +172,7 @@ msgstr "類型" #: libraries/schema/Pdf_Relation_Schema.class.php:1388 #: libraries/structure.lib.php:1183 #: libraries/tbl_columns_definition_form.inc.php:116 tbl_printview.php:132 -#: tbl_tracking.php:327 tbl_tracking.php:389 +#: tbl_tracking.php:328 tbl_tracking.php:390 msgid "Null" msgstr "空" @@ -187,7 +187,7 @@ msgstr "空" #: libraries/schema/Pdf_Relation_Schema.class.php:1389 #: libraries/structure.lib.php:210 libraries/structure.lib.php:1184 #: libraries/tbl_columns_definition_form.inc.php:107 tbl_printview.php:133 -#: tbl_tracking.php:328 +#: tbl_tracking.php:329 msgid "Default" msgstr "預設" @@ -229,9 +229,9 @@ msgstr "註釋" #: libraries/server_privileges.lib.php:2163 #: libraries/server_privileges.lib.php:2483 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 -#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:329 -#: sql.php:424 sql.php:425 tbl_printview.php:186 tbl_tracking.php:345 -#: tbl_tracking.php:399 tbl_tracking.php:404 +#: libraries/user_preferences.lib.php:282 prefs_manage.php:138 sql.php:293 +#: tbl_printview.php:186 tbl_tracking.php:346 tbl_tracking.php:400 +#: tbl_tracking.php:405 msgid "No" msgstr "否" @@ -256,9 +256,9 @@ msgstr "否" #: libraries/server_privileges.lib.php:2480 #: libraries/server_privileges.lib.php:2497 libraries/structure.lib.php:1268 #: libraries/user_preferences.lib.php:280 prefs_manage.php:136 -#: server_databases.php:103 server_databases.php:110 sql.php:422 sql.php:423 -#: tbl_printview.php:187 tbl_structure.php:84 tbl_tracking.php:345 -#: tbl_tracking.php:397 tbl_tracking.php:402 +#: server_databases.php:103 server_databases.php:110 tbl_printview.php:187 +#: tbl_structure.php:84 tbl_tracking.php:346 tbl_tracking.php:398 +#: tbl_tracking.php:403 msgid "Yes" msgstr "是" @@ -308,7 +308,7 @@ msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原 #: libraries/server_privileges.lib.php:1999 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2882 libraries/structure.lib.php:757 -#: tbl_tracking.php:763 +#: tbl_tracking.php:764 msgid "Table" msgstr "表" @@ -357,7 +357,7 @@ msgstr "您至少需要選擇一個欄位" #: db_qbe.php:60 #, php-format msgid "Switch to %svisual builder%s" -msgstr "切換至 %svisual builder%s" +msgstr "切換至 %s視覺生成器%s" #: db_search.php:30 libraries/plugins/auth/AuthenticationConfig.class.php:81 #: libraries/plugins/auth/AuthenticationConfig.class.php:96 @@ -383,7 +383,7 @@ msgstr "已追蹤的表" #: libraries/server_privileges.lib.php:1989 #: libraries/server_privileges.lib.php:2230 #: libraries/server_privileges.lib.php:2873 server_databases.php:202 -#: server_status.php:379 tbl_tracking.php:762 +#: server_status.php:379 tbl_tracking.php:763 msgid "Database" msgstr "資料庫" @@ -391,17 +391,17 @@ msgstr "資料庫" msgid "Last version" msgstr "最新版本" -#: db_tracking.php:81 tbl_tracking.php:765 +#: db_tracking.php:81 tbl_tracking.php:766 msgid "Created" msgstr "建立" -#: db_tracking.php:82 tbl_tracking.php:766 +#: db_tracking.php:82 tbl_tracking.php:767 msgid "Updated" msgstr "更新" #: db_tracking.php:83 js/messages.php:163 libraries/Menu.class.php:458 #: libraries/rte/rte_events.lib.php:426 libraries/rte/rte_list.lib.php:78 -#: server_status.php:391 tbl_tracking.php:767 +#: server_status.php:391 tbl_tracking.php:768 msgid "Status" msgstr "狀態" @@ -414,7 +414,7 @@ msgstr "狀態" msgid "Action" msgstr "動作" -#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:768 +#: db_tracking.php:85 tbl_change.php:235 tbl_tracking.php:769 msgid "Show" msgstr "顯示" @@ -423,18 +423,18 @@ msgid "Delete tracking data for this table" msgstr "刪除追蹤資料" #: db_tracking.php:103 libraries/Index.class.php:625 -#: libraries/Util.class.php:3449 libraries/Util.class.php:3450 +#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 #: libraries/structure.lib.php:307 libraries/structure.lib.php:1378 #: libraries/structure.lib.php:2050 libraries/structure.lib.php:2052 #: server_databases.php:332 msgid "Drop" msgstr "刪除" -#: db_tracking.php:120 tbl_tracking.php:723 tbl_tracking.php:777 +#: db_tracking.php:120 tbl_tracking.php:724 tbl_tracking.php:778 msgid "active" msgstr "啓用" -#: db_tracking.php:122 tbl_tracking.php:725 tbl_tracking.php:779 +#: db_tracking.php:122 tbl_tracking.php:726 tbl_tracking.php:780 msgid "not active" msgstr "停用" @@ -442,11 +442,11 @@ msgstr "停用" msgid "Versions" msgstr "版本" -#: db_tracking.php:139 tbl_tracking.php:489 tbl_tracking.php:799 +#: db_tracking.php:139 tbl_tracking.php:490 tbl_tracking.php:800 msgid "Tracking report" msgstr "追蹤報告" -#: db_tracking.php:140 tbl_tracking.php:292 tbl_tracking.php:804 +#: db_tracking.php:140 tbl_tracking.php:293 tbl_tracking.php:805 msgid "Structure snapshot" msgstr "結構快照" @@ -635,7 +635,7 @@ msgstr "沒有字元集轉換函式庫,無法轉換檔案字元集" msgid "Could not load import plugins, please check your installation!" msgstr "無法載入匯入插件,請檢查您的安裝!" -#: import.php:519 sql.php:294 sql.php:1111 +#: import.php:519 sql.php:262 sql.php:942 #, php-format msgid "Bookmark %s created" msgstr "已建立書籤 %s" @@ -660,7 +660,7 @@ msgstr "" "在最後一次執行匯入時沒有資料被解析,建議您增加 PHP 運行時間限制,否則 " "phpMyAdmin 將無法完成匯入操作。" -#: import.php:590 libraries/DisplayResults.class.php:4531 +#: import.php:590 libraries/DisplayResults.class.php:4524 #: libraries/Message.class.php:180 libraries/rte/rte_routines.lib.php:1427 #: libraries/sql_query_form.lib.php:116 tbl_operations.php:184 #: tbl_relation.php:250 tbl_row_action.php:122 view_operations.php:57 @@ -859,7 +859,7 @@ msgid "" "issues." msgstr "伺服器上運行了 Suhosin。請先查看%s檔案%s中是否有類似的情況。" -#: js/messages.php:27 libraries/import.lib.php:118 sql.php:254 +#: js/messages.php:27 libraries/import.lib.php:118 sql.php:222 msgid "\"DROP DATABASE\" statements are disabled." msgstr "刪除資料庫的指令「DROP DATABASE」已經被停用。" @@ -868,7 +868,7 @@ msgstr "刪除資料庫的指令「DROP DATABASE」已經被停用。" msgid "Do you really want to execute \"%s\"?" msgstr "您確定要執行「%s」?" -#: js/messages.php:31 libraries/mult_submits.inc.php:337 sql.php:376 +#: js/messages.php:31 libraries/mult_submits.inc.php:337 msgid "You are about to DESTROY a complete database!" msgstr "您將要刪除一個完整的資料庫!" @@ -952,8 +952,8 @@ msgstr "重新載入權限" msgid "Removing Selected Users" msgstr "正在刪除選中的使用者" -#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:293 -#: tbl_tracking.php:490 +#: js/messages.php:58 js/messages.php:115 tbl_tracking.php:294 +#: tbl_tracking.php:491 msgid "Close" msgstr "關閉" @@ -1078,13 +1078,13 @@ msgstr "B" #. l10n: shortcuts for Kilobyte #: js/messages.php:100 libraries/Util.class.php:1463 -#: server_status_monitor.php:557 +#: libraries/server_status_monitor.lib.php:250 msgid "KiB" msgstr "KB" #. l10n: shortcuts for Megabyte #: js/messages.php:101 libraries/Util.class.php:1465 -#: server_status_monitor.php:558 +#: libraries/server_status_monitor.lib.php:251 msgid "MiB" msgstr "MB" @@ -1123,7 +1123,7 @@ msgid "Traffic" msgstr "流量" #: js/messages.php:111 libraries/Menu.class.php:486 -#: server_status_monitor.php:677 +#: libraries/server_status_monitor.lib.php:290 msgid "Settings" msgstr "設定" @@ -1143,13 +1143,14 @@ msgstr "新增一張圖表至格線" msgid "Please add at least one variable to the series" msgstr "請至少增加一個變數" -#: js/messages.php:117 libraries/DisplayResults.class.php:1288 +#: js/messages.php:117 libraries/DisplayResults.class.php:1285 #: libraries/TableSearch.class.php:841 libraries/TableSearch.class.php:985 #: libraries/display_export.lib.php:383 #: libraries/plugins/export/ExportSql.class.php:1546 #: libraries/server_privileges.lib.php:2132 +#: libraries/server_status_monitor.lib.php:269 #: libraries/tbl_columns_definition_form.inc.php:687 pmd_general.php:559 -#: server_status.php:529 server_status_monitor.php:576 +#: server_status.php:529 msgid "None" msgstr "無" @@ -1244,7 +1245,7 @@ msgstr "管理我的設定" msgid "Current settings" msgstr "目前的設定" -#: js/messages.php:142 server_status_monitor.php:517 +#: js/messages.php:142 libraries/server_status_monitor.lib.php:209 msgid "Chart Title" msgstr "圖表的標題" @@ -1287,9 +1288,7 @@ msgid "" "This column shows the amount of identical queries that are grouped together. " "However only the SQL query itself has been used as a grouping criteria, so " "the other attributes of queries, such as start time, may differ." -msgstr "" -"這個欄位顯示一些被群組起來的相似查詢。但是系統只是用這些查詢的文字作為群組的" -"標準,所以查詢的結果可能會有些許不同。" +msgstr "這個欄位顯示一些被群組起來的相似查詢。但是系統只是用這些查詢的文字作為群組的準則,所以查詢的結果可能會有些許不同。" #: js/messages.php:154 msgid "" @@ -1328,7 +1327,7 @@ msgstr "輸出說明" #: libraries/plugins/export/ExportHtmlword.class.php:486 #: libraries/plugins/export/ExportOdt.class.php:564 #: libraries/plugins/export/ExportTexytext.class.php:437 -#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:505 +#: libraries/rte/rte_list.lib.php:68 libraries/sql.lib.php:457 #: server_status.php:387 msgid "Time" msgstr "時間" @@ -1423,10 +1422,10 @@ msgstr "使用匯入的設定檔讀取圖表時發生錯誤,改用預設的設 #: js/messages.php:190 libraries/Menu.class.php:288 #: libraries/Menu.class.php:371 libraries/Menu.class.php:482 #: libraries/config/messages.inc.php:168 libraries/display_import.lib.php:187 -#: prefs_manage.php:238 server_status_monitor.php:742 +#: libraries/server_status_monitor.lib.php:355 prefs_manage.php:238 #: setup/frames/menu.inc.php:21 msgid "Import" -msgstr "輸入" +msgstr "匯入" #: js/messages.php:191 msgid "Import monitor configuration" @@ -1442,7 +1441,7 @@ msgstr "分析查詢" #: js/messages.php:198 msgid "Advisor system" -msgstr "顧問系統" +msgstr "輔導系統" #: js/messages.php:199 msgid "Possible performance issues" @@ -1454,7 +1453,7 @@ msgstr "問題" #: js/messages.php:201 msgid "Recommendation" -msgstr "推薦" +msgstr "建議" #: js/messages.php:202 msgid "Rule details" @@ -1480,7 +1479,7 @@ msgid "Cancel" msgstr "取消" #: js/messages.php:213 libraries/navigation/NavigationHeader.class.php:54 -#: server_status_monitor.php:477 +#: libraries/server_status_monitor.lib.php:159 msgid "Loading" msgstr "載入中" @@ -1628,10 +1627,10 @@ msgstr "隱藏查詢框" msgid "Show query box" msgstr "顯示查詢框" -#: js/messages.php:264 libraries/DisplayResults.class.php:3314 +#: js/messages.php:264 libraries/DisplayResults.class.php:3311 #: libraries/Index.class.php:591 libraries/Util.class.php:699 -#: libraries/Util.class.php:1246 libraries/Util.class.php:3453 -#: libraries/Util.class.php:3454 libraries/config/messages.inc.php:486 +#: libraries/Util.class.php:1246 libraries/Util.class.php:3455 +#: libraries/Util.class.php:3456 libraries/config/messages.inc.php:486 #: libraries/schema/User_Schema.class.php:216 server_variables.php:130 #: setup/frames/index.inc.php:147 msgid "Edit" @@ -1641,7 +1640,7 @@ msgstr "編輯" msgid "No rows selected" msgstr "沒有選中任何行" -#: js/messages.php:266 libraries/DisplayResults.class.php:5051 +#: js/messages.php:266 libraries/DisplayResults.class.php:5044 #: libraries/structure.lib.php:1374 libraries/structure.lib.php:2048 #: querywindow.php:85 msgid "Change" @@ -1723,7 +1722,7 @@ msgstr "資料指標內容" msgid "Ignore" msgstr "忽略" -#: js/messages.php:299 libraries/DisplayResults.class.php:3317 +#: js/messages.php:299 libraries/DisplayResults.class.php:3314 msgid "Copy" msgstr "複製" @@ -1739,7 +1738,7 @@ msgstr "一維折線" msgid "Polygon" msgstr "多邊形" -#: js/messages.php:306 libraries/DisplayResults.class.php:1641 +#: js/messages.php:306 libraries/DisplayResults.class.php:1638 msgid "Geometry" msgstr "幾何體" @@ -2211,35 +2210,35 @@ msgstr "每小時" msgid "per day" msgstr "每天" -#: libraries/Config.class.php:1115 +#: libraries/Config.class.php:1117 #, php-format msgid "Existing configuration file (%s) is not readable." msgstr "" "設定檔 %s 是唯獨狀態,請開啟該檔案的讀取權限。(如果您沒有相關權限,請聯絡系" "統管理員。)" -#: libraries/Config.class.php:1145 +#: libraries/Config.class.php:1147 msgid "Wrong permissions on configuration file, should not be world writable!" msgstr "" "phpMyAdmin 發現您的設定檔允許任何人寫入,為了安全性的考量,請重新設定該設定檔" "的權限。" -#: libraries/Config.class.php:1711 +#: libraries/Config.class.php:1713 msgid "Font size" msgstr "字體大小" -#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1272 -#: libraries/DisplayResults.class.php:2007 -#: libraries/DisplayResults.class.php:2015 libraries/TableSearch.class.php:812 +#: libraries/DBQbe.class.php:346 libraries/DisplayResults.class.php:1269 +#: libraries/DisplayResults.class.php:2004 +#: libraries/DisplayResults.class.php:2012 libraries/TableSearch.class.php:812 #: libraries/operations.lib.php:632 libraries/structure.lib.php:860 #: libraries/structure.lib.php:877 server_databases.php:203 #: server_databases.php:220 server_status.php:477 msgid "Ascending" msgstr "遞增" -#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1284 -#: libraries/DisplayResults.class.php:2002 -#: libraries/DisplayResults.class.php:2020 libraries/TableSearch.class.php:813 +#: libraries/DBQbe.class.php:349 libraries/DisplayResults.class.php:1281 +#: libraries/DisplayResults.class.php:1999 +#: libraries/DisplayResults.class.php:2017 libraries/TableSearch.class.php:813 #: libraries/operations.lib.php:635 libraries/structure.lib.php:865 #: libraries/structure.lib.php:882 server_databases.php:203 #: server_databases.php:220 server_status.php:474 @@ -2254,7 +2253,7 @@ msgstr "欄位:" msgid "Sort:" msgstr "排序:" -#: libraries/DBQbe.class.php:468 libraries/DisplayResults.class.php:903 +#: libraries/DBQbe.class.php:468 msgid "Show:" msgstr "顯示:" @@ -2367,8 +2366,8 @@ msgid_plural "%1$s matches in %2$s" msgstr[0] "%1$s 筆符合資料於 %2$s" #: libraries/DbSearch.class.php:346 libraries/Menu.class.php:250 -#: libraries/Util.class.php:3229 libraries/Util.class.php:3442 -#: libraries/Util.class.php:3443 libraries/structure.lib.php:1368 +#: libraries/Util.class.php:3229 libraries/Util.class.php:3444 +#: libraries/Util.class.php:3445 libraries/structure.lib.php:1368 msgid "Browse" msgstr "瀏覽" @@ -2377,14 +2376,14 @@ msgstr "瀏覽" msgid "Delete the matches for the %s table?" msgstr "刪除 %s 資料表中符合的資料?" -#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3386 -#: libraries/DisplayResults.class.php:5027 +#: libraries/DbSearch.class.php:357 libraries/DisplayResults.class.php:3383 +#: libraries/DisplayResults.class.php:5020 #: libraries/schema/User_Schema.class.php:217 #: libraries/schema/User_Schema.class.php:299 #: libraries/schema/User_Schema.class.php:352 #: libraries/sql_query_form.lib.php:428 pmd_general.php:472 #: setup/frames/index.inc.php:148 setup/frames/index.inc.php:254 -#: tbl_tracking.php:538 tbl_tracking.php:558 tbl_tracking.php:620 +#: tbl_tracking.php:539 tbl_tracking.php:559 tbl_tracking.php:621 msgid "Delete" msgstr "刪除" @@ -2447,41 +2446,32 @@ msgctxt "Last page" msgid "End" msgstr "最末頁" -#: libraries/DisplayResults.class.php:904 tbl_chart.php:241 -msgid "Start row:" -msgstr "開始列:" - -#: libraries/DisplayResults.class.php:908 libraries/display_export.lib.php:175 +#: libraries/DisplayResults.class.php:904 libraries/display_export.lib.php:175 #: tbl_chart.php:245 msgid "Number of rows:" msgstr "記錄數:" -#: libraries/DisplayResults.class.php:917 +#: libraries/DisplayResults.class.php:921 msgid "Mode:" msgstr "座標軸模式:" -#: libraries/DisplayResults.class.php:919 +#: libraries/DisplayResults.class.php:923 msgid "horizontal" msgstr "水平" -#: libraries/DisplayResults.class.php:920 +#: libraries/DisplayResults.class.php:924 msgid "horizontal (rotated headers)" msgstr "水平 (旋轉標題)" -#: libraries/DisplayResults.class.php:921 +#: libraries/DisplayResults.class.php:925 msgid "vertical" msgstr "垂直" -#: libraries/DisplayResults.class.php:933 -#, php-format -msgid "Headers every %s rows" -msgstr "每 %s 列顯示欄位標題" - -#: libraries/DisplayResults.class.php:1230 +#: libraries/DisplayResults.class.php:1227 msgid "Sort by key" msgstr "主鍵排序" -#: libraries/DisplayResults.class.php:1578 libraries/TableSearch.class.php:754 +#: libraries/DisplayResults.class.php:1575 libraries/TableSearch.class.php:754 #: libraries/import.lib.php:1195 libraries/import.lib.php:1221 #: libraries/plugins/export/ExportCodegen.class.php:90 #: libraries/plugins/export/ExportCsv.class.php:79 @@ -2508,89 +2498,89 @@ msgstr "主鍵排序" msgid "Options" msgstr "選項" -#: libraries/DisplayResults.class.php:1584 -#: libraries/DisplayResults.class.php:1690 +#: libraries/DisplayResults.class.php:1581 +#: libraries/DisplayResults.class.php:1687 msgid "Partial texts" msgstr "部分內容" -#: libraries/DisplayResults.class.php:1585 -#: libraries/DisplayResults.class.php:1694 +#: libraries/DisplayResults.class.php:1582 +#: libraries/DisplayResults.class.php:1691 msgid "Full texts" msgstr "完整內容" -#: libraries/DisplayResults.class.php:1599 +#: libraries/DisplayResults.class.php:1596 msgid "Relational key" msgstr "關聯鍵" -#: libraries/DisplayResults.class.php:1600 +#: libraries/DisplayResults.class.php:1597 msgid "Relational display column" msgstr "關聯顯示字段" -#: libraries/DisplayResults.class.php:1612 +#: libraries/DisplayResults.class.php:1609 msgid "Show binary contents" msgstr "顯示二進制內容" -#: libraries/DisplayResults.class.php:1617 +#: libraries/DisplayResults.class.php:1614 msgid "Show BLOB contents" msgstr "顯示 BLOB 內容" -#: libraries/DisplayResults.class.php:1622 +#: libraries/DisplayResults.class.php:1619 #: libraries/config/messages.inc.php:57 msgid "Show binary contents as HEX" msgstr "以十六進制顯示二進制內容" -#: libraries/DisplayResults.class.php:1633 +#: libraries/DisplayResults.class.php:1630 msgid "Hide browser transformation" msgstr "隱藏瀏覽器轉換" -#: libraries/DisplayResults.class.php:1642 +#: libraries/DisplayResults.class.php:1639 msgid "Well Known Text" msgstr "易懂的文字" -#: libraries/DisplayResults.class.php:1643 +#: libraries/DisplayResults.class.php:1640 msgid "Well Known Binary" msgstr "易懂的二進位檔" -#: libraries/DisplayResults.class.php:3359 -#: libraries/DisplayResults.class.php:3375 +#: libraries/DisplayResults.class.php:3356 +#: libraries/DisplayResults.class.php:3372 msgid "The row has been deleted" msgstr "已刪除該行" -#: libraries/DisplayResults.class.php:3413 -#: libraries/DisplayResults.class.php:5027 server_status.php:524 +#: libraries/DisplayResults.class.php:3410 +#: libraries/DisplayResults.class.php:5020 server_status.php:524 msgid "Kill" msgstr "中止" -#: libraries/DisplayResults.class.php:4477 libraries/structure.lib.php:771 +#: libraries/DisplayResults.class.php:4470 libraries/structure.lib.php:771 msgid "May be approximate. See [doc@faq3-11]FAQ 3.11[/doc]" msgstr "可能接近。參見 [doc@faq3-11]FAQ 3.11[/doc]" -#: libraries/DisplayResults.class.php:4873 +#: libraries/DisplayResults.class.php:4866 msgid "in query" msgstr "查詢中" -#: libraries/DisplayResults.class.php:4910 libraries/structure.lib.php:653 +#: libraries/DisplayResults.class.php:4903 libraries/structure.lib.php:653 #, php-format msgid "" "This view has at least this number of rows. Please refer to %sdocumentation" "%s." msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。" -#: libraries/DisplayResults.class.php:4923 +#: libraries/DisplayResults.class.php:4916 msgid "Showing rows" msgstr "顯示行" -#: libraries/DisplayResults.class.php:4939 +#: libraries/DisplayResults.class.php:4932 msgid "total" msgstr "總計" -#: libraries/DisplayResults.class.php:4950 sql.php:855 +#: libraries/DisplayResults.class.php:4943 sql.php:686 #, php-format msgid "Query took %01.4f sec" msgstr "查詢花費 %01.4f 秒" -#: libraries/DisplayResults.class.php:5041 -#: libraries/DisplayResults.class.php:5047 libraries/mult_submits.inc.php:43 +#: libraries/DisplayResults.class.php:5034 +#: libraries/DisplayResults.class.php:5040 libraries/mult_submits.inc.php:43 #: libraries/server_privileges.lib.php:2420 #: libraries/server_privileges.lib.php:2424 libraries/structure.lib.php:278 #: libraries/structure.lib.php:293 libraries/structure.lib.php:295 @@ -2599,8 +2589,8 @@ msgstr "查詢花費 %01.4f 秒" msgid "With selected:" msgstr "選中項:" -#: libraries/DisplayResults.class.php:5045 -#: libraries/DisplayResults.class.php:5046 +#: libraries/DisplayResults.class.php:5038 +#: libraries/DisplayResults.class.php:5039 #: libraries/server_privileges.lib.php:778 #: libraries/server_privileges.lib.php:779 #: libraries/server_privileges.lib.php:2422 @@ -2611,45 +2601,45 @@ msgstr "選中項:" msgid "Check All" msgstr "全選" -#: libraries/DisplayResults.class.php:5064 -#: libraries/DisplayResults.class.php:5334 libraries/Menu.class.php:279 +#: libraries/DisplayResults.class.php:5057 +#: libraries/DisplayResults.class.php:5327 libraries/Menu.class.php:279 #: libraries/Menu.class.php:362 libraries/Menu.class.php:478 -#: libraries/Util.class.php:3455 libraries/Util.class.php:3456 +#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 #: libraries/config/messages.inc.php:162 libraries/display_export.lib.php:98 #: libraries/server_privileges.lib.php:1791 -#: libraries/server_privileges.lib.php:2428 libraries/structure.lib.php:297 -#: prefs_manage.php:295 server_status_monitor.php:746 -#: setup/frames/menu.inc.php:22 +#: libraries/server_privileges.lib.php:2428 +#: libraries/server_status_monitor.lib.php:359 libraries/structure.lib.php:297 +#: prefs_manage.php:295 setup/frames/menu.inc.php:22 msgid "Export" msgstr "匯出" -#: libraries/DisplayResults.class.php:5166 view_create.php:152 +#: libraries/DisplayResults.class.php:5159 view_create.php:152 msgid "Create view" -msgstr "新建視圖" +msgstr "新建視表" -#: libraries/DisplayResults.class.php:5222 +#: libraries/DisplayResults.class.php:5215 msgid "Query results operations" msgstr "查詢結果選項" -#: libraries/DisplayResults.class.php:5258 libraries/Header.class.php:334 +#: libraries/DisplayResults.class.php:5251 libraries/Header.class.php:334 #: libraries/structure.lib.php:299 libraries/structure.lib.php:362 #: libraries/structure.lib.php:1481 msgid "Print view" msgstr "列印預覽" -#: libraries/DisplayResults.class.php:5276 +#: libraries/DisplayResults.class.php:5269 msgid "Print view (with full texts)" msgstr "列印預覽 (全文顯示)" -#: libraries/DisplayResults.class.php:5347 tbl_chart.php:151 +#: libraries/DisplayResults.class.php:5340 tbl_chart.php:151 msgid "Display chart" msgstr "顯示圖表" -#: libraries/DisplayResults.class.php:5372 +#: libraries/DisplayResults.class.php:5365 msgid "Visualize GIS data" -msgstr "虛擬的 GIS 資料" +msgstr "視覺化的 GIS 資料" -#: libraries/DisplayResults.class.php:5586 +#: libraries/DisplayResults.class.php:5579 msgid "Link not found" msgstr "找不到連結" @@ -2724,38 +2714,38 @@ msgstr "沒有已定義的索引!" #: libraries/Index.class.php:536 libraries/Index.class.php:549 #: libraries/build_html_for_db.lib.php:41 libraries/index.lib.php:23 #: libraries/navigation/Nodes/Node_Index_Container.class.php:26 -#: tbl_tracking.php:378 +#: tbl_tracking.php:379 msgid "Indexes" msgstr "索引" #: libraries/Index.class.php:563 libraries/structure.lib.php:1387 #: libraries/structure.lib.php:2058 libraries/structure.lib.php:2068 -#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:384 +#: libraries/tbl_columns_definition_form.inc.php:569 tbl_tracking.php:385 msgid "Unique" msgstr "唯一" -#: libraries/Index.class.php:564 tbl_tracking.php:385 +#: libraries/Index.class.php:564 tbl_tracking.php:386 msgid "Packed" msgstr "緊湊" -#: libraries/Index.class.php:566 tbl_tracking.php:387 +#: libraries/Index.class.php:566 tbl_tracking.php:388 msgid "Cardinality" msgstr "基數" #: libraries/Index.class.php:567 libraries/TableSearch.class.php:185 #: libraries/build_html_for_db.lib.php:20 libraries/mysql_charsets.lib.php:34 #: libraries/operations.lib.php:240 libraries/operations.lib.php:809 -#: libraries/server_collations.lib.php:39 -#: libraries/server_collations.lib.php:51 libraries/structure.lib.php:780 +#: libraries/server_collations.lib.php:35 +#: libraries/server_collations.lib.php:47 libraries/structure.lib.php:780 #: libraries/structure.lib.php:1181 libraries/structure.lib.php:1701 -#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:326 -#: tbl_tracking.php:388 +#: libraries/tbl_columns_definition_form.inc.php:114 tbl_tracking.php:327 +#: tbl_tracking.php:389 msgid "Collation" msgstr "排序規則" #: libraries/Index.class.php:570 libraries/rte/rte_events.lib.php:529 -#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:330 -#: tbl_tracking.php:390 +#: libraries/rte/rte_routines.lib.php:1068 tbl_tracking.php:331 +#: tbl_tracking.php:391 msgid "Comment" msgstr "註解" @@ -2784,18 +2774,18 @@ msgstr "伺服器" #: libraries/structure.lib.php:707 libraries/structure.lib.php:1188 #: libraries/tbl_info.inc.php:59 msgid "View" -msgstr "view" +msgstr "視表" #: libraries/Menu.class.php:256 libraries/Menu.class.php:340 #: libraries/Util.class.php:3225 libraries/Util.class.php:3232 -#: libraries/Util.class.php:3448 libraries/config/setup.forms.php:298 +#: libraries/Util.class.php:3450 libraries/config/setup.forms.php:298 #: libraries/config/setup.forms.php:335 libraries/config/setup.forms.php:361 #: libraries/config/user_preferences.forms.php:195 #: libraries/config/user_preferences.forms.php:232 #: libraries/config/user_preferences.forms.php:258 #: libraries/import.lib.php:1221 libraries/server_privileges.lib.php:749 #: libraries/tbl_columns_definition_form.inc.php:771 pmd_general.php:188 -#: tbl_tracking.php:320 +#: tbl_tracking.php:321 msgid "Structure" msgstr "結構" @@ -2808,12 +2798,12 @@ msgstr "SQL" #: libraries/Menu.class.php:263 libraries/Menu.class.php:348 #: libraries/Util.class.php:3227 libraries/Util.class.php:3234 -#: libraries/Util.class.php:3444 libraries/Util.class.php:3445 +#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 msgid "Search" msgstr "搜尋" #: libraries/Menu.class.php:273 libraries/Util.class.php:3228 -#: libraries/Util.class.php:3446 libraries/Util.class.php:3447 +#: libraries/Util.class.php:3448 libraries/Util.class.php:3449 #: libraries/sql_query_form.lib.php:301 libraries/sql_query_form.lib.php:304 msgid "Insert" msgstr "插入" @@ -2937,15 +2927,15 @@ msgstr[0] "插入了 %1$d 行。" msgid "Error while creating PDF:" msgstr "在產生 PDF 檔案時發生錯誤:" -#: libraries/RecentTable.class.php:114 +#: libraries/RecentTable.class.php:117 msgid "Could not save recent table" msgstr "無法儲存最新資料表" -#: libraries/RecentTable.class.php:151 +#: libraries/RecentTable.class.php:154 msgid "Recent tables" msgstr "最新資料表" -#: libraries/RecentTable.class.php:163 +#: libraries/RecentTable.class.php:166 msgid "There are no recent tables" msgstr "沒有最新資料表" @@ -3045,7 +3035,7 @@ msgstr "監測器" #: libraries/ServerStatusData.class.php:355 msgid "Advisor" -msgstr "顧問" +msgstr "輔導" #: libraries/StorageEngine.class.php:216 msgid "" @@ -3184,7 +3174,7 @@ msgid "Maximum rows to plot" msgstr "最多可顯示行數" #: libraries/TableSearch.class.php:888 libraries/TableSearch.class.php:1160 -#: libraries/sql.lib.php:415 tbl_change.php:230 +#: libraries/sql.lib.php:367 tbl_change.php:230 msgid "Browse foreign values" msgstr "瀏覽不相關的值" @@ -3515,7 +3505,7 @@ msgstr "字串" #: libraries/Types.class.php:674 msgctxt "spatial types" msgid "Spatial" -msgstr "空間的" +msgstr "空間類型" #: libraries/Types.class.php:709 msgid "A 4-byte integer, range is -2,147,483,648 to 2,147,483,647" @@ -3564,7 +3554,7 @@ msgstr "" msgid "Max: %s%s" msgstr "最大限制:%s %s" -#: libraries/Util.class.php:674 libraries/sql.lib.php:465 +#: libraries/Util.class.php:674 libraries/sql.lib.php:417 msgid "SQL query:" msgstr "SQL 查詢:" @@ -3623,7 +3613,7 @@ msgctxt "Inline edit query" msgid "Inline" msgstr "行間" -#: libraries/Util.class.php:1434 libraries/sql.lib.php:493 +#: libraries/Util.class.php:1434 libraries/sql.lib.php:445 msgid "Profiling" msgstr "概要" @@ -3662,49 +3652,49 @@ msgstr "%s 功能受到一個已知的缺陷 (bug) 影響,參見 %s" msgid "Click to toggle" msgstr "點此切換" -#: libraries/Util.class.php:3361 libraries/sql_query_form.lib.php:470 +#: libraries/Util.class.php:3363 libraries/sql_query_form.lib.php:470 #: prefs_manage.php:248 msgid "Browse your computer:" msgstr "從計算機中上傳:" -#: libraries/Util.class.php:3386 +#: libraries/Util.class.php:3388 #, php-format msgid "Select from the web server upload directory %s:" msgstr "選擇 Web 伺服器上傳目錄 %s:" -#: libraries/Util.class.php:3415 libraries/insert_edit.lib.php:1183 +#: libraries/Util.class.php:3417 libraries/insert_edit.lib.php:1183 #: libraries/sql_query_form.lib.php:479 msgid "The directory you set for upload work cannot be reached" msgstr "設定之上傳目錄錯誤,無法使用" -#: libraries/Util.class.php:3426 +#: libraries/Util.class.php:3428 msgid "There are no files to upload" msgstr "沒有可上傳的檔案" -#: libraries/Util.class.php:3451 libraries/Util.class.php:3452 +#: libraries/Util.class.php:3453 libraries/Util.class.php:3454 #: libraries/structure.lib.php:305 msgid "Empty" msgstr "清空" -#: libraries/Util.class.php:3457 libraries/Util.class.php:3458 +#: libraries/Util.class.php:3459 libraries/Util.class.php:3460 msgid "Execute" msgstr "執行" -#: libraries/Util.class.php:3985 +#: libraries/Util.class.php:3987 msgid "Print" msgstr "列印" -#: libraries/Util.class.php:4086 libraries/structure.lib.php:798 +#: libraries/Util.class.php:4088 libraries/structure.lib.php:798 #: libraries/structure.lib.php:1754 tbl_printview.php:410 msgid "Creation" msgstr "建立時間" -#: libraries/Util.class.php:4092 libraries/structure.lib.php:805 +#: libraries/Util.class.php:4094 libraries/structure.lib.php:805 #: libraries/structure.lib.php:1762 tbl_printview.php:421 msgid "Last update" msgstr "最後更新" -#: libraries/Util.class.php:4098 libraries/structure.lib.php:812 +#: libraries/Util.class.php:4100 libraries/structure.lib.php:812 #: libraries/structure.lib.php:1770 tbl_printview.php:432 msgid "Last check" msgstr "最後檢查" @@ -3818,54 +3808,54 @@ msgstr "$_REQUEST 數量過多(駭客?)" msgid "numeric key detected" msgstr "$_GLOBALS 內含非法的數字鍵名" -#: libraries/config.values.php:49 libraries/config.values.php:64 +#: libraries/config.values.php:49 libraries/config.values.php:65 msgid "Icons" msgstr "圖示" -#: libraries/config.values.php:50 libraries/config.values.php:65 +#: libraries/config.values.php:50 libraries/config.values.php:66 msgid "Text" msgstr "文字" -#: libraries/config.values.php:51 libraries/config.values.php:58 -#: libraries/config.values.php:66 +#: libraries/config.values.php:51 libraries/config.values.php:59 +#: libraries/config.values.php:67 msgid "Both" msgstr "全部" -#: libraries/config.values.php:55 +#: libraries/config.values.php:56 msgid "Nowhere" msgstr "全部皆否" -#: libraries/config.values.php:56 +#: libraries/config.values.php:57 msgid "Left" msgstr "左" -#: libraries/config.values.php:57 +#: libraries/config.values.php:58 msgid "Right" msgstr "右" -#: libraries/config.values.php:69 +#: libraries/config.values.php:70 msgid "Click" msgstr "" -#: libraries/config.values.php:70 +#: libraries/config.values.php:71 msgid "Double click" msgstr "" -#: libraries/config.values.php:71 libraries/config.values.php:102 +#: libraries/config.values.php:72 libraries/config.values.php:103 #: libraries/config/FormDisplay.tpl.php:223 libraries/relation.lib.php:96 #: libraries/relation.lib.php:103 msgid "Disabled" msgstr "已關閉" -#: libraries/config.values.php:100 +#: libraries/config.values.php:101 msgid "Open" msgstr "開啓" -#: libraries/config.values.php:101 +#: libraries/config.values.php:102 msgid "Closed" msgstr "關閉" -#: libraries/config.values.php:131 +#: libraries/config.values.php:132 #: libraries/plugins/export/ExportHtmlword.class.php:69 #: libraries/plugins/export/ExportLatex.class.php:103 #: libraries/plugins/export/ExportMediawiki.class.php:73 @@ -3875,7 +3865,7 @@ msgstr "關閉" msgid "structure" msgstr "結構" -#: libraries/config.values.php:132 +#: libraries/config.values.php:133 #: libraries/plugins/export/ExportHtmlword.class.php:70 #: libraries/plugins/export/ExportLatex.class.php:104 #: libraries/plugins/export/ExportMediawiki.class.php:74 @@ -3885,7 +3875,7 @@ msgstr "結構" msgid "data" msgstr "資料" -#: libraries/config.values.php:133 +#: libraries/config.values.php:134 #: libraries/plugins/export/ExportHtmlword.class.php:71 #: libraries/plugins/export/ExportLatex.class.php:105 #: libraries/plugins/export/ExportMediawiki.class.php:75 @@ -3895,31 +3885,31 @@ msgstr "資料" msgid "structure and data" msgstr "結構和資料" -#: libraries/config.values.php:136 +#: libraries/config.values.php:137 msgid "Quick - display only the minimal options to configure" msgstr "快速 - 僅顯示必須的設定項" -#: libraries/config.values.php:137 +#: libraries/config.values.php:138 msgid "Custom - display all possible options to configure" msgstr "自訂 - 顯示所有可用的設定項" -#: libraries/config.values.php:138 +#: libraries/config.values.php:139 msgid "Custom - like above, but without the quick/custom choice" msgstr "自訂 - 不顯示 快速/自訂 選擇" -#: libraries/config.values.php:166 +#: libraries/config.values.php:167 msgid "complete inserts" msgstr "完整插入" -#: libraries/config.values.php:167 +#: libraries/config.values.php:168 msgid "extended inserts" msgstr "外掛插入" -#: libraries/config.values.php:168 +#: libraries/config.values.php:169 msgid "both of the above" msgstr "以上兼有" -#: libraries/config.values.php:169 +#: libraries/config.values.php:170 msgid "neither of the above" msgstr "以上均不" @@ -5080,14 +5070,10 @@ msgid "Minimum number of databases to display the database filter box" msgstr "顯示過濾框的最少資料庫數量" #: libraries/config/messages.inc.php:309 -#, fuzzy -#| msgid "" -#| "Only light version; display databases in a tree (determined by the " -#| "separator defined below)" msgid "" "Group items in the navigation tree (determined by the separator defined " "below)" -msgstr "只使用輕量級版本,以樹形顯示資料庫 (以下面的樹形分隔符號來顯示)" +msgstr "導覽樹中的群組項目 (以下面的樹形分隔符號來顯示)" #: libraries/config/messages.inc.php:310 msgid "Group items in the tree" @@ -5193,29 +5179,20 @@ msgid "Missing phpMyAdmin configuration storage tables" msgstr "丟失 phpMyAdmin 進階功能資料表" #: libraries/config/messages.inc.php:334 -#, fuzzy -#| msgid "" -#| "Disable the default warning that is displayed if mcrypt is missing for " -#| "cookie authentication" msgid "" "Disable the default warning that is displayed if a difference between the " "MySQL library and server is detected" -msgstr "禁止顯示在使用 cookie 認證時缺少 mcrypt 的預設警告" +msgstr "如果偵測到 MySQL 函式庫和伺服器有所不同時禁用預設的警告顯示" #: libraries/config/messages.inc.php:335 msgid "Server/library difference warning" msgstr "" #: libraries/config/messages.inc.php:336 -#, fuzzy -#| msgid "" -#| "Disable the default warning that is displayed on the database details " -#| "Structure page if any of the required tables for the phpMyAdmin " -#| "configuration storage could not be found" msgid "" "Disable the default warning that is displayed on the Structure page if " "column names in a table are reserved MySQL words" -msgstr "禁止在缺少 phpMyAdmin 進階功能所需資料表時在資料庫結構頁中顯示預設警告" +msgstr "如果資料表欄位是 MySQL 保留字時,在顯示結構頁面禁用預設警告" #: libraries/config/messages.inc.php:337 msgid "MySQL reserved word warning" @@ -5372,30 +5349,22 @@ msgid "Authentication type" msgstr "認證方式" #: libraries/config/messages.inc.php:376 -#, fuzzy -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/" -#| "a] support, suggested: [kbd]pma_bookmark[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/bookmark]bookmark[/a] " "support, suggested: [kbd]pma__bookmark[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤 [/a]功能請留空,預設:" -"[kbd]pma_bookmark[/kbd]" +"在不支援[a@http://wiki.phpmyadmin.net/pma/bookmark]書籤[/a]功能時請留空,建議" +"用:[kbd]pma__bookmark[/kbd]" #: libraries/config/messages.inc.php:377 msgid "Bookmark table" msgstr "書籤表" #: libraries/config/messages.inc.php:378 -#, fuzzy -#| msgid "" -#| "Leave blank for no column comments/mime types, suggested: " -#| "[kbd]pma_column_info[/kbd]" msgid "" "Leave blank for no column comments/mime types, suggested: " "[kbd]pma__column_info[/kbd]" -msgstr "留空則不使用列資訊和MIME類型。預設值:[kbd]pma_column_info[/kbd]" +msgstr "無欄位註解/MIME類型時留空白。建議值:[kbd]pma__column_info[/kbd]" #: libraries/config/messages.inc.php:379 msgid "Column information table" @@ -5437,14 +5406,13 @@ msgstr "控制使用者" msgid "" "An alternate host to hold the configuration storage; leave blank to use the " "already defined host" -msgstr "儲存設定檔的備用伺服器;留空以使用預先定義的伺服器" +msgstr "儲存設定檔的備用主機,留空以使用預先定義的主機" #: libraries/config/messages.inc.php:388 msgid "Control host" msgstr "管理伺服器" #: libraries/config/messages.inc.php:389 -#, fuzzy #| msgid "" #| "An alternate host to hold the configuration storage; leave blank to use " #| "the already defined host" @@ -5452,23 +5420,18 @@ msgid "" "An alternate port to connect to the host that holds the configuration " "storage; leave blank to use the default port, or the already defined port, " "if the controlhost equals host" -msgstr "儲存設定檔的備用伺服器;留空以使用預先定義的伺服器" +msgstr "儲存設定檔的備用連接埠,留空以使用預先定義的連接埠" #: libraries/config/messages.inc.php:390 -#, fuzzy #| msgid "Control host" msgid "Control port" -msgstr "管理伺服器" +msgstr "管理連接埠" #: libraries/config/messages.inc.php:391 -#, fuzzy -#| msgid "" -#| "Leave blank for no Designer support, suggested: [kbd]pma_designer_coords[/" -#| "kbd]" msgid "" "Leave blank for no Designer support, suggested: [kbd]pma__designer_coords[/" "kbd]" -msgstr "不使用設計功能請留空,預設:[kbd]pma_designer_coords[/kbd]" +msgstr "不使用設計功能請留空,建議值:[kbd]pma__designer_coords[/kbd]" #: libraries/config/messages.inc.php:392 msgid "Designer table" @@ -5503,14 +5466,10 @@ msgid "Hide databases" msgstr "隱藏資料庫" #: libraries/config/messages.inc.php:399 -#, fuzzy -#| msgid "" -#| "Leave blank for no SQL query history support, suggested: " -#| "[kbd]pma_history[/kbd]" msgid "" "Leave blank for no SQL query history support, suggested: [kbd]pma__history[/" "kbd]" -msgstr "不使用 SQL 查詢歷史功能請留空,預設:[kbd]pma_history[/kbd]" +msgstr "不使用 SQL 查詢歷史功能請留空,建議值:[kbd]pma__history[/kbd]" #: libraries/config/messages.inc.php:400 msgid "SQL query history table" @@ -5547,22 +5506,13 @@ msgid "Connect without password" msgstr "用空密碼連線" #: libraries/config/messages.inc.php:408 -#, fuzzy -#| msgid "" -#| "You can use MySQL wildcard characters (% and _), escape them if you want " -#| "to use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " -#| "[kbd]'my_db'[/kbd]. Using this option you can sort database list, just " -#| "enter their names in order and use [kbd]*[/kbd] at the end to show the " -#| "rest in alphabetical order." msgid "" "You can use MySQL wildcard characters (% and _), escape them if you want to " "use their literal instances, i.e. use [kbd]'my\\_db'[/kbd] and not " "[kbd]'my_db'[/kbd]." msgstr "" -"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元的原始意義,請在前面" -"加上反斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。透過該選項" -"您可以對資料庫列表排序,只要依序輸入它們的名稱並在最後加上 [kbd]*[/kbd] 顯示" -"剩下的資料庫(依字母排序)。" +"您可以使用 MySQL 萬用字元 (% 和 _),如果想要表示萬用字元本身,請在前面加上反" +"斜線。例:用 [kbd]'my\\_db'[/kbd] 而不是 [kbd]'my_db'[/kbd]。" #: libraries/config/messages.inc.php:409 msgid "Show only listed databases" @@ -5577,12 +5527,9 @@ msgid "Password for config auth" msgstr "config 認證方式的密碼" #: libraries/config/messages.inc.php:412 -#, fuzzy -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__pdf_pages[/kbd]" -msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_pdf_pages[/kbd]" +msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__pdf_pages[/kbd]" #: libraries/config/messages.inc.php:413 msgid "PDF schema: pages table" @@ -5621,16 +5568,12 @@ msgid "Recently used table" msgstr "最近使用的資料表" #: libraries/config/messages.inc.php:420 -#, fuzzy -#| msgid "" -#| "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" -#| "links[/a] support, suggested: [kbd]pma_relation[/kbd]" msgid "" "Leave blank for no [a@http://wiki.phpmyadmin.net/pma/relation]relation-" "links[/a] support, suggested: [kbd]pma__relation[/kbd]" msgstr "" -"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,預" -"設:[kbd]pma_relation[/kbd]" +"不使用[a@http://wiki.phpmyadmin.net/pma/relation]關聯連結 [/a]功能請留空,建" +"議值:[kbd]pma__relation[/kbd]" #: libraries/config/messages.inc.php:421 msgid "Relation table" @@ -5676,42 +5619,33 @@ msgid "Use SSL" msgstr "使用 SSL" #: libraries/config/messages.inc.php:431 -#, fuzzy -#| msgid "" -#| "Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/" -#| "kbd]" msgid "" "Leave blank for no PDF schema support, suggested: [kbd]pma__table_coords[/" "kbd]" -msgstr "不使用 PDF 大綱功能請留空,預設:[kbd]pma_table_coords[/kbd]" +msgstr "不使用 PDF 大綱功能請留空,建議值:[kbd]pma__table_coords[/kbd]" #: libraries/config/messages.inc.php:432 msgid "PDF schema: table coordinates" msgstr "PDF 大綱: 資料表同時" #: libraries/config/messages.inc.php:433 -#, fuzzy -#| msgid "" -#| "Table to describe the display columns, leave blank for no support; " -#| "suggested: [kbd]pma_table_info[/kbd]" msgid "" "Table to describe the display columns, leave blank for no support; " "suggested: [kbd]pma__table_info[/kbd]" -msgstr "描述顯示欄位的表,不使用請留空,預設:[kbd]pma_table_info[/kbd]" +msgstr "描述顯示欄位的表,不使用請留空,建議值:[kbd]pma__table_info[/kbd]" #: libraries/config/messages.inc.php:434 msgid "Display columns table" msgstr "顯示字段表" #: libraries/config/messages.inc.php:435 -#, fuzzy #| msgid "" #| "ve blank for no user preferences storage in database, suggested: " #| "[kbd]_config[/kbd]" msgid "" "Leave blank for no \"persistent\" tables' UI preferences across sessions, " "suggested: [kbd]pma__table_uiprefs[/kbd]" -msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" +msgstr "不在資料表中儲存跨連線 UI 偏好時請留空,建議值:[kbd]pma__config[/kbd]" #: libraries/config/messages.inc.php:436 msgid "UI preferences table" @@ -5742,7 +5676,7 @@ msgstr "新增 DROP TABLE" msgid "" "Whether a DROP VIEW IF EXISTS statement will be added as first line to the " "log when creating a view." -msgstr "設定當 view 建立時,是否在紀錄檔前面加上 DROP VIEW IF EXISTS 命令。" +msgstr "設定當視表建立時,是否在紀錄檔前面加上 DROP 視表 IF EXISTS 命令。" #: libraries/config/messages.inc.php:442 msgid "Add DROP VIEW" @@ -5757,14 +5691,10 @@ msgid "Statements to track" msgstr "要追蹤的命令" #: libraries/config/messages.inc.php:445 -#, fuzzy -#| msgid "" -#| "Leave blank for no SQL query tracking support, suggested: " -#| "[kbd]pma_tracking[/kbd]" msgid "" "Leave blank for no SQL query tracking support, suggested: " "[kbd]pma__tracking[/kbd]" -msgstr "不使用 SQL 查詢追蹤功能請留空,預設:[kbd]pma_tracking[/kbd]" +msgstr "不使用 SQL 查詢追蹤功能請留空,建議值:[kbd]pma__tracking[/kbd]" #: libraries/config/messages.inc.php:446 msgid "SQL query tracking table" @@ -5774,21 +5704,17 @@ msgstr "SQL 查詢追蹤表" msgid "" "Whether the tracking mechanism creates versions for tables and views " "automatically." -msgstr "設定追蹤系統是否自動爲資料表和 view 建立版本。" +msgstr "設定追蹤系統是否自動爲資料表和視表建立版本。" #: libraries/config/messages.inc.php:448 msgid "Automatically create versions" msgstr "自動建立版本" #: libraries/config/messages.inc.php:449 -#, fuzzy -#| msgid "" -#| "ve blank for no user preferences storage in database, suggested: " -#| "[kbd]_config[/kbd]" msgid "" "Leave blank for no user preferences storage in database, suggested: " "[kbd]pma__userconfig[/kbd]" -msgstr "不在資料庫中儲存使用者偏好請留空,預設:[kbd]pma_config[/kbd]" +msgstr "不在資料庫中儲存使用者偏好請留空,建議值:[kbd]pma__config[/kbd]" #: libraries/config/messages.inc.php:450 msgid "User preferences storage table" @@ -5838,10 +5764,8 @@ msgid "Show or hide a column displaying the Creation timestamp for all tables" msgstr "" #: libraries/config/messages.inc.php:461 -#, fuzzy -#| msgid "Show more actions" msgid "Show Creation timestamp" -msgstr "顯示更多操作" +msgstr "顯示建立時間戳記" #: libraries/config/messages.inc.php:462 msgid "" @@ -5858,10 +5782,8 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:465 -#, fuzzy -#| msgid "Show master status" msgid "Show Last check timestamp" -msgstr "查看主伺服器狀態" +msgstr "顯示最後檢查時間戳記" #: libraries/config/messages.inc.php:466 msgid "" @@ -5980,8 +5902,8 @@ msgid "" "kbd])" msgstr "如果您有自己的帳號,請在這裏輸入 (預設爲 [kbd]anonymous (匿名)[/kbd])" -#: libraries/config/messages.inc.php:496 tbl_tracking.php:556 -#: tbl_tracking.php:618 +#: libraries/config/messages.inc.php:496 tbl_tracking.php:557 +#: tbl_tracking.php:619 msgid "Username" msgstr "使用者名" @@ -6103,10 +6025,8 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:523 -#, fuzzy -#| msgid "Version check" msgid "Version check proxy url" -msgstr "檢查更新" +msgstr "檢查代理 url 版本" #: libraries/config/messages.inc.php:524 msgid "" @@ -6116,20 +6036,16 @@ msgid "" msgstr "" #: libraries/config/messages.inc.php:525 -#, fuzzy -#| msgid "Version check" msgid "Version check proxy username" -msgstr "檢查更新" +msgstr "檢查代理使用者名稱版本" #: libraries/config/messages.inc.php:526 msgid "The password for authenticating with the proxy" msgstr "" #: libraries/config/messages.inc.php:527 -#, fuzzy -#| msgid "Version check" msgid "Version check proxy password" -msgstr "檢查更新" +msgstr "檢查代理密碼版本" #: libraries/config/messages.inc.php:529 msgid "" @@ -6183,8 +6099,6 @@ msgstr "CSV 使用 LOAD DATA" #: libraries/config/setup.forms.php:262 libraries/config/setup.forms.php:355 #: libraries/config/user_preferences.forms.php:160 #: libraries/config/user_preferences.forms.php:252 -#, fuzzy -#| msgid "Open Document Spreadsheet" msgid "OpenDocument Spreadsheet" msgstr "OpenOffice 表格" @@ -6215,8 +6129,6 @@ msgstr "微軟 Word 2000" #: libraries/config/setup.forms.php:359 #: libraries/config/user_preferences.forms.php:256 -#, fuzzy -#| msgid "Open Document Text" msgid "OpenDocument Text" msgstr "OpenOffice 檔案" @@ -6253,10 +6165,8 @@ msgid "Empty phpMyAdmin control user password while using pmadb" msgstr "使用 PMA 資料時控制使用者的密碼不能爲空" #: libraries/config/validate.lib.php:435 -#, fuzzy -#| msgid "Incorrect value" msgid "Incorrect value:" -msgstr "輸入的值不正確" +msgstr "輸入的值不正確:" #: libraries/config/validate.lib.php:443 #, php-format @@ -6301,16 +6211,12 @@ msgstr "密碼:" #: libraries/display_change_password.lib.php:67 #: libraries/replication_gui.lib.php:379 #: libraries/server_privileges.lib.php:1226 -#, fuzzy -#| msgid "Re-type" msgid "Re-type:" -msgstr "重新輸入" +msgstr "重新輸入:" #: libraries/display_change_password.lib.php:74 -#, fuzzy -#| msgid "Password Hashing" msgid "Password Hashing:" -msgstr "密碼加密方式" +msgstr "密碼加密方式:" #: libraries/display_change_password.lib.php:87 msgid "MySQL 4.0 compatible" @@ -6325,10 +6231,8 @@ msgid "Create" msgstr "建立" #: libraries/display_create_database.lib.php:43 -#, fuzzy -#| msgid "Create database" msgid "Create database:" -msgstr "建立新資料庫" +msgstr "建立新資料庫:" #: libraries/display_create_database.lib.php:47 #: libraries/server_privileges.lib.php:2943 server_privileges.php:149 @@ -6394,7 +6298,7 @@ msgstr "資料庫:" msgid "Table(s):" msgstr "資料表:" -#: libraries/display_export.lib.php:164 libraries/sql.lib.php:469 +#: libraries/display_export.lib.php:164 libraries/sql.lib.php:421 msgid "Rows:" msgstr "記錄:" @@ -6511,16 +6415,14 @@ msgid "Git revision:" msgstr "" #: libraries/display_git_revision.lib.php:67 -#, fuzzy, php-format -#| msgid "Create version %s of %s.%s" +#, php-format msgid "committed on %1$s by %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "%2$s 提交了 %1$s" #: libraries/display_git_revision.lib.php:75 -#, fuzzy, php-format -#| msgid "Create version %s of %s.%s" +#, php-format msgid "authored on %1$s by %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "%2$s 執筆於 %1$s" #: libraries/display_import.lib.php:69 msgid "" @@ -6537,10 +6439,8 @@ msgid "%s of %s" msgstr "" #: libraries/display_import.lib.php:86 -#, fuzzy -#| msgid "Format of imported file" msgid "Uploading your import file…" -msgstr "匯入檔案的格式" +msgstr "正在上傳您的匯入檔案…" #: libraries/display_import.lib.php:94 #, php-format @@ -6609,18 +6509,13 @@ msgid "" msgstr "上一個匯入操作超時,隨後重新送出將會從 %d 處開始。" #: libraries/display_import.lib.php:289 -#, fuzzy -#| msgid "" -#| "Allow the interruption of an import in case the script detects it is " -#| "close to the PHP timeout limit. (This might be good way to import " -#| "large files, however it can break transactions.)" msgid "" "Allow the interruption of an import in case the script detects it is close " "to the PHP timeout limit. (This might be a good way to import large " "files, however it can break transactions.)" msgstr "" -"在匯入時指令若檢測到可能需要花費很長時間則允許中斷。(儘管這會中斷交易,但" -"在匯入大檔案時是個很好的方法。)" +"在 PHP 執行匯入時,若偵測到逾時則允許中斷。(在匯入大檔案時這是個很好的方" +"法,不過這樣會中斷交易。)" #: libraries/display_import.lib.php:296 msgid "Number of rows to skip, starting from the first row:" @@ -6636,10 +6531,8 @@ msgid "Add index" msgstr "新增索引" #: libraries/display_indexes.lib.php:52 -#, fuzzy -#| msgid "Edit mode" msgid "Edit index" -msgstr "編輯模式" +msgstr "編輯索引" #: libraries/display_indexes.lib.php:63 msgid "Index name:" @@ -6651,10 +6544,8 @@ msgid "" msgstr "(“PRIMARY”必須而且只能作爲主鍵的名稱!)" #: libraries/display_indexes.lib.php:85 -#, fuzzy -#| msgid "Comment" msgid "Comment:" -msgstr "註解" +msgstr "註解:" #: libraries/display_indexes.lib.php:99 msgid "Index type:" @@ -6985,10 +6876,10 @@ msgstr "PrimeBase XT 博客 —— Paul McCullagh 著" #: libraries/gis_visualization.lib.php:141 msgid "No data found for GIS visualization." -msgstr "沒有找到 GIS 虛擬所需資料。" +msgstr "沒有找到 GIS 視覺化的所需資料。" #: libraries/import.lib.php:187 libraries/insert_edit.lib.php:122 -#: libraries/rte/rte_routines.lib.php:1446 sql.php:850 tbl_get_field.php:55 +#: libraries/rte/rte_routines.lib.php:1446 sql.php:681 tbl_get_field.php:55 msgid "MySQL returned an empty result set (i.e. zero rows)." msgstr "MySQL 返回的查詢結果爲空 (即零行)。" @@ -7007,8 +6898,6 @@ msgid "" msgstr "點選相應的“選項”連結修改它的設定" #: libraries/import.lib.php:1193 -#, fuzzy -#| msgid "Edit its structure by following the \"Structure\" link" msgid "Edit structure by following the \"Structure\" link" msgstr "點選「結構」連結以編輯" @@ -7035,7 +6924,7 @@ msgstr "%s 的結構" #: libraries/import.lib.php:1234 #, php-format msgid "Go to view: %s" -msgstr "前往 VIEW:%s" +msgstr "前往檢視:%s" #: libraries/index.lib.php:32 #, php-format @@ -7061,10 +6950,8 @@ msgid "Binary - do not edit" msgstr "二進制 - 無法編輯" #: libraries/insert_edit.lib.php:1187 libraries/sql_query_form.lib.php:482 -#, fuzzy -#| msgid "web server upload directory" msgid "web server upload directory:" -msgstr "網站伺服器上傳資料夾" +msgstr "網站伺服器上傳資料夾:" #: libraries/insert_edit.lib.php:1402 #, php-format @@ -7108,11 +6995,11 @@ msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere" msgstr "按 TAB 鍵跳到下一個數值,或 CTRL+方向鍵 作隨意移動" -#: libraries/insert_edit.lib.php:1914 sql.php:845 +#: libraries/insert_edit.lib.php:1914 sql.php:676 msgid "Showing SQL query" msgstr "顯示 SQL 查詢" -#: libraries/insert_edit.lib.php:1939 sql.php:825 +#: libraries/insert_edit.lib.php:1939 sql.php:656 #, php-format msgid "Inserted row id: %1$d" msgstr "插入的行 id: %1$d" @@ -7129,16 +7016,12 @@ msgid "Convert to Kana" msgstr "轉換爲假名" #: libraries/mult_submits.inc.php:288 -#, fuzzy -#| msgid "Replace table prefix" msgid "Replace table prefix:" -msgstr "覆蓋資料表名稱的前綴文字" +msgstr "取代資料表名稱的前綴文字:" #: libraries/mult_submits.inc.php:290 -#, fuzzy -#| msgid "Copy table with prefix" msgid "Copy table with prefix:" -msgstr "複製資料表名稱的前綴文字" +msgstr "複製資料表並在名稱加上前綴文字:" #: libraries/mult_submits.inc.php:295 msgid "From" @@ -7154,20 +7037,16 @@ msgid "Submit" msgstr "送出" #: libraries/mult_submits.inc.php:317 -#, fuzzy -#| msgid "Add table prefix" msgid "Add table prefix:" -msgstr "新增資料表的前綴文字" +msgstr "新增資料表的前綴文字:" #: libraries/mult_submits.inc.php:320 msgid "Add prefix" msgstr "新增前綴文字" -#: libraries/mult_submits.inc.php:339 sql.php:416 -#, fuzzy -#| msgid "Do you really want to " +#: libraries/mult_submits.inc.php:339 msgid "Do you really want to execute the following query?" -msgstr "您真的要" +msgstr "您真的要執行下列的查詢?" #: libraries/mult_submits.inc.php:616 tbl_replace.php:251 msgid "No change" @@ -7386,22 +7265,18 @@ msgid "%s other result found" msgid_plural "%s other results found" msgstr[0] "" -#: libraries/navigation/NavigationTree.class.php:1042 -#, fuzzy -#| msgid "filter tables by name" +#: libraries/navigation/NavigationTree.class.php:1039 msgid "filter databases by name" -msgstr "請輸入部分或完整的表名" +msgstr "依資料庫名稱篩選" -#: libraries/navigation/NavigationTree.class.php:1043 -#: libraries/navigation/NavigationTree.class.php:1076 +#: libraries/navigation/NavigationTree.class.php:1040 +#: libraries/navigation/NavigationTree.class.php:1073 msgid "Clear Fast Filter" msgstr "" -#: libraries/navigation/NavigationTree.class.php:1075 -#, fuzzy -#| msgid "filter tables by name" +#: libraries/navigation/NavigationTree.class.php:1072 msgid "filter items by name" -msgstr "請輸入部分或完整的表名" +msgstr "依項目名稱篩選" #. l10n: The word "Node" must not be translated here #: libraries/navigation/NodeFactory.class.php:41 @@ -7470,7 +7345,7 @@ msgstr "" #: libraries/navigation/Nodes/Node_View_Container.class.php:26 #: libraries/plugins/export/ExportXml.class.php:125 msgid "Views" -msgstr "view" +msgstr "視表" #: libraries/navigation/Nodes/Node_View_Container.class.php:37 msgctxt "Create new view" @@ -7478,10 +7353,8 @@ msgid "New" msgstr "" #: libraries/operations.lib.php:75 -#, fuzzy -#| msgid "Rename database to" msgid "Rename database to:" -msgstr "將資料庫改名為" +msgstr "將資料庫改名為:" #: libraries/operations.lib.php:107 #, php-format @@ -7497,25 +7370,23 @@ msgid "Drop the database (DROP)" msgstr "刪除資料庫 (DROP)" #: libraries/operations.lib.php:145 libraries/operations.lib.php:1015 -#: tbl_tracking.php:506 +#: tbl_tracking.php:507 msgid "Structure only" msgstr "僅結構" #: libraries/operations.lib.php:146 libraries/operations.lib.php:1016 -#: tbl_tracking.php:512 +#: tbl_tracking.php:513 msgid "Structure and data" msgstr "結構和資料" #: libraries/operations.lib.php:147 libraries/operations.lib.php:1017 -#: tbl_tracking.php:509 +#: tbl_tracking.php:510 msgid "Data only" msgstr "僅資料" #: libraries/operations.lib.php:175 -#, fuzzy -#| msgid "Copy database to" msgid "Copy database to:" -msgstr "複製資料庫到" +msgstr "複製資料庫到:" #: libraries/operations.lib.php:186 msgid "CREATE DATABASE before copying" @@ -7713,10 +7584,8 @@ msgid "Username:" msgstr "使用者名稱:" #: libraries/plugins/auth/AuthenticationCookie.class.php:225 -#, fuzzy -#| msgid "Server Choice" msgid "Server Choice:" -msgstr "選擇伺服器" +msgstr "選擇伺服器:" #: libraries/plugins/auth/AuthenticationCookie.class.php:386 msgid "Entered captcha is wrong, try again!" @@ -7837,10 +7706,8 @@ msgstr "Event" #: libraries/rte/rte_events.lib.php:513 #: libraries/rte/rte_routines.lib.php:1031 #: libraries/rte/rte_triggers.lib.php:401 -#, fuzzy -#| msgid "Description" msgid "Definition" -msgstr "說明" +msgstr "定義" #: libraries/plugins/export/ExportHtmlword.class.php:553 #: libraries/plugins/export/ExportOdt.class.php:643 @@ -7854,14 +7721,14 @@ msgstr "表的結構" #: libraries/plugins/export/ExportSql.class.php:1484 #: libraries/plugins/export/ExportTexytext.class.php:513 msgid "Structure for view" -msgstr "view結構" +msgstr "視表結構" #: libraries/plugins/export/ExportHtmlword.class.php:581 #: libraries/plugins/export/ExportOdt.class.php:679 #: libraries/plugins/export/ExportSql.class.php:1501 #: libraries/plugins/export/ExportTexytext.class.php:520 msgid "Stand-in structure for view" -msgstr "替換 view以便查看" +msgstr "替換視表以便查看" #: libraries/plugins/export/ExportLatex.class.php:43 msgid "Content of table @TABLE@" @@ -7883,24 +7750,19 @@ msgstr "物件建立選項" #: libraries/plugins/export/ExportLatex.class.php:121 #: libraries/plugins/export/ExportLatex.class.php:166 -#, fuzzy -#| msgid "Table caption" msgid "Table caption:" -msgstr "表的標題" +msgstr "表的標題:" #: libraries/plugins/export/ExportLatex.class.php:126 #: libraries/plugins/export/ExportLatex.class.php:171 -#, fuzzy -#| msgid "Table caption (continued)" msgid "Table caption (continued):" -msgstr "表的副標題" +msgstr "表的標題(續上):" #: libraries/plugins/export/ExportLatex.class.php:131 #: libraries/plugins/export/ExportLatex.class.php:176 -#, fuzzy #| msgid "Label key" msgid "Label key:" -msgstr "關鍵標籤" +msgstr "標籤鍵值:" #: libraries/plugins/export/ExportLatex.class.php:137 #: libraries/plugins/export/ExportOdt.class.php:103 @@ -7920,71 +7782,53 @@ msgid "Display MIME types" msgstr "顯示 MIME 類型" #: libraries/plugins/export/ExportLatex.class.php:162 -#, fuzzy -#| msgid "Put columns names in the first row" msgid "Put columns names in the first row:" -msgstr "首行儲存欄位名稱" +msgstr "首行儲存欄位名稱:" #: libraries/plugins/export/ExportLatex.class.php:218 #: libraries/plugins/export/ExportSql.class.php:601 #: libraries/plugins/export/ExportXml.class.php:191 #: libraries/replication_gui.lib.php:68 libraries/replication_gui.lib.php:293 -#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:459 -#, fuzzy -#| msgid "Host" +#: libraries/server_privileges.lib.php:1081 libraries/sql.lib.php:411 msgid "Host:" -msgstr "主機" +msgstr "主機:" #: libraries/plugins/export/ExportLatex.class.php:223 #: libraries/plugins/export/ExportSql.class.php:608 -#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:462 -#, fuzzy -#| msgid "Generation Time" +#: libraries/plugins/export/ExportXml.class.php:196 libraries/sql.lib.php:414 msgid "Generation Time:" -msgstr "產生日期" +msgstr "產生時間:" #: libraries/plugins/export/ExportLatex.class.php:226 #: libraries/plugins/export/ExportSql.class.php:614 #: libraries/plugins/export/ExportXml.class.php:199 -#, fuzzy -#| msgid "PHP Version" msgid "PHP Version:" -msgstr "PHP 版本" +msgstr "PHP 版本:" #: libraries/plugins/export/ExportLatex.class.php:251 #: libraries/plugins/export/ExportSql.class.php:760 #: libraries/plugins/export/ExportXml.class.php:390 #: libraries/plugins/export/PMA_ExportPdf.class.php:115 -#: libraries/sql.lib.php:460 -#, fuzzy -#| msgid "Database" +#: libraries/sql.lib.php:412 msgid "Database:" -msgstr "資料庫" +msgstr "資料庫:" #: libraries/plugins/export/ExportLatex.class.php:303 #: libraries/plugins/export/ExportSql.class.php:1546 -#, fuzzy -#| msgid "Data" msgid "Data:" -msgstr "資料" +msgstr "資料:" #: libraries/plugins/export/ExportLatex.class.php:487 -#, fuzzy -#| msgid "Structure" msgid "Structure:" -msgstr "結構" +msgstr "結構:" #: libraries/plugins/export/ExportMediawiki.class.php:84 -#, fuzzy -#| msgid "Export contents" msgid "Export table names" -msgstr "匯出內容" +msgstr "匯出的資料表名稱" #: libraries/plugins/export/ExportMediawiki.class.php:90 -#, fuzzy -#| msgid "horizontal (rotated headers)" msgid "Export table headers" -msgstr "水平 (旋轉標題)" +msgstr "匯出資料表的標題" #: libraries/plugins/export/ExportPdf.class.php:97 msgid "(Generates a report containing the data of a single table)" @@ -8035,10 +7879,8 @@ msgstr "" "表)" #: libraries/plugins/export/ExportSql.class.php:295 -#, fuzzy -#| msgid "Object creation options" msgid "Data creation options" -msgstr "物件建立選項" +msgstr "資料建立選項" #: libraries/plugins/export/ExportSql.class.php:299 #: libraries/plugins/export/ExportSql.class.php:1652 @@ -8144,10 +7986,8 @@ msgid "Export contents" msgstr "匯出內容" #: libraries/plugins/export/PMA_ExportPdf.class.php:116 -#, fuzzy -#| msgid "Table" msgid "Table:" -msgstr "表" +msgstr "資料表:" #: libraries/plugins/import/ImportCsv.class.php:63 #: libraries/plugins/import/ImportOds.class.php:74 @@ -8207,10 +8047,9 @@ msgid "MediaWiki Table" msgstr "MediaWiki 表" #: libraries/plugins/import/ImportMediawiki.class.php:303 -#, fuzzy, php-format -#| msgid "Invalid format of CSV input on line %d." +#, php-format msgid "Invalid format of mediawiki input on line: %s." -msgstr "CSV 輸入的第 %d 行格式有錯" +msgstr "mediawiki 輸入在此行格式錯誤:%s." #: libraries/plugins/import/ImportOds.class.php:88 msgid "Import percentages as proper decimals (ex. 12.00% to .12)" @@ -8229,10 +8068,8 @@ msgid "" msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試。" #: libraries/plugins/import/ImportOds.class.php:182 -#, fuzzy -#| msgid "Open Document Spreadsheet" msgid "Could not parse OpenDocument Spreasheet!" -msgstr "OpenOffice 表格" +msgstr "無法解析 OpenOffice 表格!" #: libraries/plugins/import/ImportShp.class.php:53 msgid "ESRI Shape File" @@ -8313,18 +8150,6 @@ msgstr "" "必須留空。" #: libraries/plugins/transformations/abstract/ExternalTransformationsPlugin.class.php:31 -#, fuzzy -#| msgid "" -#| "LINUX ONLY: Launches an external application and feeds it the column data " -#| "via standard input. Returns the standard output of the application. The " -#| "default is Tidy, to pretty-print HTML code. For security reasons, you " -#| "have to manually edit the file libraries/transformations/" -#| "text_plain__external.inc.php and list the tools you want to make " -#| "available. The first option is then the number of the program you want to " -#| "use and the second option is the parameters for the program. The third " -#| "option, if set to 1, will convert the output using htmlspecialchars() " -#| "(Default 1). The fourth option, if set to 1, will prevent wrapping and " -#| "ensure that the output appears all on one line (Default 1)." msgid "" "LINUX ONLY: Launches an external application and feeds it the column data " "via standard input. Returns the standard output of the application. The " @@ -8337,12 +8162,12 @@ msgid "" "option, if set to 1, will prevent wrapping and ensure that the output " "appears all on one line (Default 1)." msgstr "" -"僅 LINUX:調用外部程序並透過標準輸入傳入欄位資料。返回此套用程序的標準輸出預" -"設爲 Tidy,可以很好的列印 HTML 程式碼。爲了安全起見,您需要手動編輯 " -"libraries/transformations/text_plain__external.inc.php 檔案來加入可以運行的工" -"具。第一個選項是您想要使用的程序編號,第二個選項是程序的參數。第三個參數如果" -"設爲 1 的話將會用 htmlspecialchars() 處理輸出 (預設爲 1)。第四個參數如果設爲 " -"1 的話,將禁止換行,確保所有內容顯示在一行中 (預設爲 1)" +"僅 LINUX:調用外部程序並透過標準輸入傳入欄位資料。返回此套用程序的標準輸出," +"預設爲 Tidy,可以很好的列印 HTML 程式碼。爲了安全起見,您需要手動編輯 " +"libraries/plugins/transformations/Text_Plain_External.class.php 檔案來加入可" +"以運行的工具。第一個選項是您想要使用的程序編號,第二個選項是程序的參數。第三" +"個參數如果設爲 1 的話將會用 htmlspecialchars() 處理輸出 (預設爲 1)。第四個參" +"數如果設爲 1 的話,將禁止換行,確保所有內容顯示在一行中 (預設爲 1)。" #: libraries/plugins/transformations/abstract/FormattedTransformationsPlugin.class.php:31 msgid "" @@ -8414,8 +8239,6 @@ msgid "not OK" msgstr "錯誤" #: libraries/relation.lib.php:92 -#, fuzzy -#| msgid "OK" msgctxt "Correctly working" msgid "OK" msgstr "確定" @@ -8522,10 +8345,8 @@ msgstr "" #: libraries/replication_gui.lib.php:60 libraries/replication_gui.lib.php:273 #: libraries/server_privileges.lib.php:1024 -#, fuzzy -#| msgid "User name" msgid "User name:" -msgstr "帳號" +msgstr "帳號:" #: libraries/replication_gui.lib.php:61 libraries/replication_gui.lib.php:276 #: libraries/replication_gui.lib.php:283 @@ -8535,10 +8356,8 @@ msgid "User name" msgstr "帳號" #: libraries/replication_gui.lib.php:72 -#, fuzzy -#| msgid "Port" msgid "Port:" -msgstr "連接埠" +msgstr "連接埠:" #: libraries/replication_gui.lib.php:112 msgid "Master status" @@ -8585,10 +8404,8 @@ msgstr "任意使用者" #: libraries/replication_gui.lib.php:372 #: libraries/server_privileges.lib.php:1175 #: libraries/server_privileges.lib.php:2292 -#, fuzzy -#| msgid "Use text field" msgid "Use text field:" -msgstr "使用文字域" +msgstr "使用文字欄位:" #: libraries/replication_gui.lib.php:326 #: libraries/server_privileges.lib.php:1139 @@ -8623,10 +8440,8 @@ msgid "Re-type" msgstr "重新輸入" #: libraries/replication_gui.lib.php:386 -#, fuzzy -#| msgid "Generate Password" msgid "Generate Password:" -msgstr "產生密碼" +msgstr "產生密碼:" #: libraries/rte/rte_events.lib.php:110 libraries/rte/rte_events.lib.php:119 #: libraries/rte/rte_events.lib.php:157 libraries/rte/rte_routines.lib.php:296 @@ -8672,17 +8487,13 @@ msgstr "編輯 Event" #: libraries/rte/rte_routines.lib.php:1481 #: libraries/rte/rte_routines.lib.php:1521 #: libraries/rte/rte_triggers.lib.php:230 -#, fuzzy -#| msgid "Error in Processing Request" msgid "Error in processing request:" -msgstr "要求處理得程序中有錯誤" +msgstr "處理要求時發生錯誤:" #: libraries/rte/rte_events.lib.php:417 libraries/rte/rte_routines.lib.php:931 #: libraries/rte/rte_triggers.lib.php:347 -#, fuzzy -#| msgid "Details…" msgid "Details" -msgstr "詳細…" +msgstr "詳細" #: libraries/rte/rte_events.lib.php:420 msgid "Event name" @@ -8693,10 +8504,9 @@ msgid "Event type" msgstr "Event 類型" #: libraries/rte/rte_events.lib.php:463 libraries/rte/rte_routines.lib.php:954 -#, fuzzy, php-format -#| msgid "Change" +#, php-format msgid "Change to %s" -msgstr "修改" +msgstr "修改為 %s" #: libraries/rte/rte_events.lib.php:469 msgid "Execute at" @@ -8707,24 +8517,18 @@ msgid "Execute every" msgstr "" #: libraries/rte/rte_events.lib.php:496 -#, fuzzy -#| msgid "Startup" msgctxt "Start of recurring event" msgid "Start" -msgstr "起始頁" +msgstr "起始" #: libraries/rte/rte_events.lib.php:505 -#, fuzzy -#| msgid "End" msgctxt "End of recurring event" msgid "End" msgstr "結束" #: libraries/rte/rte_events.lib.php:519 -#, fuzzy -#| msgid "complete inserts" msgid "On completion preserve" -msgstr "完整插入" +msgstr "完成時保留" #: libraries/rte/rte_events.lib.php:524 #: libraries/rte/rte_routines.lib.php:1042 @@ -8771,10 +8575,8 @@ msgid "Event scheduler status" msgstr "Event 排程狀態" #: libraries/rte/rte_list.lib.php:55 -#, fuzzy -#| msgid "Return type" msgid "Returns" -msgstr "返回類型" +msgstr "返回" #: libraries/rte/rte_routines.lib.php:69 msgid "" @@ -8786,48 +8588,39 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:281 #: libraries/rte/rte_routines.lib.php:1118 -#, fuzzy, php-format -#| msgid "Invalid server index: %s" +#, php-format msgid "Invalid routine type: \"%s\"" -msgstr "無效的伺服器索引: %s" +msgstr "無效的函式類型: \"%s\"" #: libraries/rte/rte_routines.lib.php:321 msgid "Sorry, we failed to restore the dropped routine." msgstr "" #: libraries/rte/rte_routines.lib.php:332 -#, fuzzy, php-format -#| msgid "Column %s has been dropped" +#, php-format msgid "Routine %1$s has been modified." -msgstr "已刪除欄位 %s " +msgstr "函式的 %1$s 已被修改。" #: libraries/rte/rte_routines.lib.php:353 -#, fuzzy, php-format -#| msgid "Table %1$s has been created." +#, php-format msgid "Routine %1$s has been created." -msgstr "建立資料表 %1$s 成功" +msgstr "函式 %1$s 已建立成功。" #: libraries/rte/rte_routines.lib.php:434 -#, fuzzy -#| msgid "Edit mode" msgid "Edit routine" -msgstr "編輯模式" +msgstr "編輯函式" #: libraries/rte/rte_routines.lib.php:934 -#, fuzzy -#| msgid "Routines" msgid "Routine name" -msgstr "一般" +msgstr "函式名稱" #: libraries/rte/rte_routines.lib.php:960 msgid "Parameters" msgstr "" #: libraries/rte/rte_routines.lib.php:966 -#, fuzzy -#| msgid "Direct links" msgid "Direction" -msgstr "直接連線" +msgstr "I/O" #: libraries/rte/rte_routines.lib.php:969 #: libraries/tbl_columns_definition_form.inc.php:98 @@ -8839,36 +8632,28 @@ msgid "Add parameter" msgstr "" #: libraries/rte/rte_routines.lib.php:988 -#, fuzzy -#| msgid "Remove database" msgid "Remove last parameter" -msgstr "刪除資料庫" +msgstr "移除最後的參數" #: libraries/rte/rte_routines.lib.php:993 msgid "Return type" msgstr "返回類型" #: libraries/rte/rte_routines.lib.php:1000 -#, fuzzy -#| msgid "Length/Values" msgid "Return length/values" -msgstr "長度/值" +msgstr "返回長度/值" #: libraries/rte/rte_routines.lib.php:1006 -#, fuzzy -#| msgid "Table options" msgid "Return options" -msgstr "表選項" +msgstr "返回選項" #: libraries/rte/rte_routines.lib.php:1037 msgid "Is deterministic" msgstr "" #: libraries/rte/rte_routines.lib.php:1047 -#, fuzzy -#| msgid "Security" msgid "Security type" -msgstr "安全" +msgstr "安全類型" #: libraries/rte/rte_routines.lib.php:1056 msgid "SQL data access" @@ -8903,10 +8688,9 @@ msgid "You must provide a routine definition." msgstr "" #: libraries/rte/rte_routines.lib.php:1370 -#, fuzzy, php-format -#| msgid "Allows executing stored routines." +#, php-format msgid "Execution results of routine %s" -msgstr "允許運行 Procedure" +msgstr "執行函式 %s 的結果" #: libraries/rte/rte_routines.lib.php:1435 #, php-format @@ -8921,42 +8705,32 @@ msgstr "" #: libraries/rte/rte_routines.lib.php:1572 #: libraries/rte/rte_routines.lib.php:1575 -#, fuzzy -#| msgid "Routines" msgid "Routine parameters" -msgstr "一般" +msgstr "函式的參數" #: libraries/rte/rte_triggers.lib.php:106 msgid "Sorry, we failed to restore the dropped trigger." msgstr "" #: libraries/rte/rte_triggers.lib.php:116 -#, fuzzy, php-format -#| msgid "Column %s has been dropped" +#, php-format msgid "Trigger %1$s has been modified." -msgstr "已刪除欄位 %s " +msgstr "觸發器 %1$s 已被修改。" #: libraries/rte/rte_triggers.lib.php:136 -#, fuzzy, php-format -#| msgid "Table %1$s has been created." +#, php-format msgid "Trigger %1$s has been created." -msgstr "建立資料表 %1$s 成功" +msgstr "建立觸發器 %1$s 成功。" #: libraries/rte/rte_triggers.lib.php:204 -#, fuzzy -#| msgid "Add a new server" msgid "Edit trigger" -msgstr "新增伺服器" +msgstr "編輯觸發器" #: libraries/rte/rte_triggers.lib.php:350 -#, fuzzy -#| msgid "Triggers" msgid "Trigger name" -msgstr "觸發器" +msgstr "觸發器名稱" #: libraries/rte/rte_triggers.lib.php:373 -#, fuzzy -#| msgid "Time" msgctxt "Trigger action time" msgid "Time" msgstr "時間" @@ -8974,86 +8748,64 @@ msgid "You must provide a valid event for the trigger" msgstr "您必須為 Event 指定一個正確觸發條件" #: libraries/rte/rte_triggers.lib.php:474 -#, fuzzy -#| msgid "Invalid table name" msgid "You must provide a valid table name" -msgstr "無效的資料資料表名稱" +msgstr "您必須提供一個合法的資料表名稱" #: libraries/rte/rte_triggers.lib.php:480 msgid "You must provide a trigger definition." msgstr "" #: libraries/rte/rte_words.lib.php:27 -#, fuzzy -#| msgid "Add index" msgid "Add routine" -msgstr "新增索引" +msgstr "新增函式" #: libraries/rte/rte_words.lib.php:29 -#, fuzzy, php-format -#| msgid "Export defaults" +#, php-format msgid "Export of routine %s" -msgstr "匯出選項" +msgstr "匯出函式 %s" #: libraries/rte/rte_words.lib.php:30 -#, fuzzy -#| msgid "Routines" msgid "routine" -msgstr "一般" +msgstr "函式" #: libraries/rte/rte_words.lib.php:31 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a routine" -msgstr "權限不足!" +msgstr "您無建立函式的權限" #: libraries/rte/rte_words.lib.php:32 -#, fuzzy, php-format -#| msgid "No tables found in database" +#, php-format msgid "No routine with name %1$s found in database %2$s" -msgstr "沒有在資料庫中找到表" +msgstr "在資料庫 %2$s 中無此函式名稱 %1$s" #: libraries/rte/rte_words.lib.php:33 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no routines to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有函式可供顯示。" #: libraries/rte/rte_words.lib.php:39 -#, fuzzy -#| msgid "Add a new server" msgid "Add trigger" -msgstr "新增伺服器" +msgstr "新增觸發器" #: libraries/rte/rte_words.lib.php:41 -#, fuzzy, php-format -#| msgid "Export contents" +#, php-format msgid "Export of trigger %s" -msgstr "匯出內容" +msgstr "匯出觸發器 %s" #: libraries/rte/rte_words.lib.php:42 -#, fuzzy -#| msgid "Triggers" msgid "trigger" msgstr "觸發器" #: libraries/rte/rte_words.lib.php:43 -#, fuzzy -#| msgid "You don't have sufficient privileges to be here right now!" msgid "You do not have the necessary privileges to create a trigger" -msgstr "權限不足!" +msgstr "您無建立觸發器的權限" #: libraries/rte/rte_words.lib.php:44 -#, fuzzy, php-format -#| msgid "No tables found in database" +#, php-format msgid "No trigger with name %1$s found in database %2$s" -msgstr "沒有在資料庫中找到表" +msgstr "資料庫 %2$s 中無此觸發器 %1$s" #: libraries/rte/rte_words.lib.php:45 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no triggers to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有觸發器可供顯示。" #: libraries/rte/rte_words.lib.php:51 msgid "Add event" @@ -9078,10 +8830,8 @@ msgid "No event with name %1$s found in database %2$s" msgstr "在資料庫「%2$s」中找不到名為「%1$s」的 Event" #: libraries/rte/rte_words.lib.php:57 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are no events to display." -msgstr "沒有可上傳的檔案" +msgstr "沒有事件可供顯示。" #: libraries/schema/Dia_Relation_Schema.class.php:240 #: libraries/schema/Eps_Relation_Schema.class.php:429 @@ -9132,7 +8882,7 @@ msgstr "屬性" #: libraries/schema/Pdf_Relation_Schema.class.php:1367 #: libraries/schema/Pdf_Relation_Schema.class.php:1390 -#: libraries/structure.lib.php:1185 tbl_tracking.php:329 +#: libraries/structure.lib.php:1185 tbl_tracking.php:330 msgid "Extra" msgstr "額外" @@ -9237,10 +8987,8 @@ msgid "Unknown language: %1$s." msgstr "未知的語言:%1$s." #: libraries/select_server.lib.php:39 libraries/select_server.lib.php:44 -#, fuzzy -#| msgid "Current Server" msgid "Current Server:" -msgstr "目前伺服器" +msgstr "目前伺服器:" #: libraries/server_bin_log.lib.php:31 msgid "Select binary log to view" @@ -9295,7 +9043,7 @@ msgid "Library" msgstr "" #: libraries/server_plugins.lib.php:78 libraries/server_plugins.lib.php:135 -#: tbl_tracking.php:764 +#: tbl_tracking.php:765 msgid "Version" msgstr "版本" @@ -9308,8 +9056,6 @@ msgid "License" msgstr "" #: libraries/server_plugins.lib.php:184 -#, fuzzy -#| msgid "Disabled" msgid "disabled" msgstr "已關閉" @@ -9610,10 +9356,8 @@ msgid "Grant" msgstr "授權" #: libraries/server_privileges.lib.php:1610 -#, fuzzy -#| msgid "View %s has been dropped" msgid "User has been added." -msgstr "已刪除 view %s" +msgstr "已新增使用者。" #: libraries/server_privileges.lib.php:1618 msgctxt "Create new user" @@ -9682,20 +9426,16 @@ msgid "Column-specific privileges" msgstr "按欄位指定權限" #: libraries/server_privileges.lib.php:2288 -#, fuzzy -#| msgid "Add privileges on the following database" msgid "Add privileges on the following database:" -msgstr "在下列資料庫新增權限" +msgstr "在下列資料庫新增權限:" #: libraries/server_privileges.lib.php:2309 msgid "Wildcards % and _ should be escaped with a \\ to use them literally" msgstr "要使用萬用字元 _ 和 % 本身,應使用用 \\ 轉義" #: libraries/server_privileges.lib.php:2327 -#, fuzzy -#| msgid "Add privileges on the following table" msgid "Add privileges on the following table:" -msgstr "在下列資料表新增權限" +msgstr "在下列資料表新增權限:" #: libraries/server_privileges.lib.php:2544 msgid "Remove selected users" @@ -9729,20 +9469,15 @@ msgid "You have updated the privileges for %s." msgstr "您已更新了 %s 的權限。" #: libraries/server_privileges.lib.php:2805 -#, fuzzy, php-format -#| msgid "Privileges" +#, php-format msgid "Privileges for %s" -msgstr "權限" +msgstr "權限 %s" #: libraries/server_privileges.lib.php:2861 -#, fuzzy -#| msgid "Edit Privileges" msgid "Edit Privileges:" -msgstr "編輯權限" +msgstr "編輯權限:" #: libraries/server_privileges.lib.php:2915 -#, fuzzy -#| msgid "User overview" msgid "Users overview" msgstr "查看使用者" @@ -9758,69 +9493,251 @@ msgstr "" "內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入" "權限%s。" -#: libraries/server_privileges.lib.php:3036 +#: libraries/server_privileges.lib.php:3035 msgid "The selected user was not found in the privilege table." msgstr "在權限表內找不到選中的使用者。" -#: libraries/server_privileges.lib.php:3249 +#: libraries/server_privileges.lib.php:3248 msgid "You have added a new user." msgstr "您已新增了一個新使用者。" -#: libraries/sql.lib.php:457 +#: libraries/server_status_monitor.lib.php:77 +#, php-format +msgid "%d second" +msgid_plural "%d seconds" +msgstr[0] "%d 秒" + +#: libraries/server_status_monitor.lib.php:80 +#, php-format +msgid "%d minute" +msgid_plural "%d minutes" +msgstr[0] "%d 分" + +#: libraries/server_status_monitor.lib.php:96 +msgid "Log statistics" +msgstr "紀錄統計" + +#: libraries/server_status_monitor.lib.php:97 +msgid "Selected time range:" +msgstr "選擇時間範圍:" + +#: libraries/server_status_monitor.lib.php:103 +msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" +msgstr "" + +#: libraries/server_status_monitor.lib.php:108 +msgid "Remove variable data in INSERT statements for better grouping" +msgstr "" + +#: libraries/server_status_monitor.lib.php:111 +msgid "Choose from which log you want the statistics to be generated from." +msgstr "" + +#: libraries/server_status_monitor.lib.php:114 +msgid "Results are grouped by query text." +msgstr "" + +#: libraries/server_status_monitor.lib.php:118 +msgid "Query analyzer" +msgstr "查詢分析" + +#: libraries/server_status_monitor.lib.php:135 +msgid "Monitor Instructions" +msgstr "監督指令" + +#: libraries/server_status_monitor.lib.php:137 +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 " +"log_output to 'TABLE' and have either the slow_query_log or general_log " +"enabled. Note however, that the general_log produces a lot of data and " +"increases server load by up to 15%." +msgstr "" + +#: libraries/server_status_monitor.lib.php:149 +msgid "" +"Unfortunately your Database server does not support logging to table, which " +"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " +"table is supported by MySQL 5.1.6 and onwards. You may still use the server " +"charting features however." +msgstr "" + +#: libraries/server_status_monitor.lib.php:164 +msgid "Using the monitor:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:167 +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 "" + +#: libraries/server_status_monitor.lib.php:173 +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 " +"confirmed, this will load a table of grouped queries, there you may click on " +"any occurring SELECT statements to further analyze them." +msgstr "" + +#: libraries/server_status_monitor.lib.php:183 +msgid "Please note:" +msgstr "" + +#: libraries/server_status_monitor.lib.php:186 +msgid "" +"Enabling the general_log may increase the server load by 5-15%. Also be " +"aware that generating statistics from the logs is a load intensive task, so " +"it is advisable to select only a small time span and to disable the " +"general_log and empty its table once monitoring is not required any more." +msgstr "" + +#: libraries/server_status_monitor.lib.php:207 +#: libraries/server_status_monitor.lib.php:314 +msgid "Add chart" +msgstr "新增圖表" + +#: libraries/server_status_monitor.lib.php:211 +msgid "Preset chart" +msgstr "預設圖表" + +#: libraries/server_status_monitor.lib.php:216 +msgid "Status variable(s)" +msgstr "變數狀態" + +#: libraries/server_status_monitor.lib.php:219 +msgid "Select series:" +msgstr "選擇序列:" + +#: libraries/server_status_monitor.lib.php:221 +msgid "Commonly monitored" +msgstr "" + +#: libraries/server_status_monitor.lib.php:237 +msgid "or type variable name:" +msgstr "或變數型態名稱:" + +#: libraries/server_status_monitor.lib.php:244 +msgid "Display as differential value" +msgstr "" + +#: libraries/server_status_monitor.lib.php:247 +#, fuzzy +#| msgid "Advisor" +msgid "Apply a divisor" +msgstr "輔導" + +#: libraries/server_status_monitor.lib.php:255 +msgid "Append unit to data values" +msgstr "" + +#: libraries/server_status_monitor.lib.php:261 +msgid "Add this series" +msgstr "新增這個序列" + +#: libraries/server_status_monitor.lib.php:263 +#, fuzzy +#| msgid "Select series:" +msgid "Clear series" +msgstr "選擇序列:" + +#: libraries/server_status_monitor.lib.php:266 +msgid "Series in Chart:" +msgstr "圖表中的序列:" + +#: libraries/server_status_monitor.lib.php:287 +msgid "Start Monitor" +msgstr "啟動監視" + +#: libraries/server_status_monitor.lib.php:294 +#, fuzzy +#| msgid "Instructions" +msgid "Instructions/Setup" +msgstr "指令" + +#: libraries/server_status_monitor.lib.php:298 +msgid "Done dragging (rearranging) charts" +msgstr "" + +#: libraries/server_status_monitor.lib.php:317 +msgid "Enable charts dragging" +msgstr "啓用圖表拖放" + +#: libraries/server_status_monitor.lib.php:321 +msgid "Refresh rate" +msgstr "更新頻率" + +#: libraries/server_status_monitor.lib.php:330 +msgid "Chart columns" +msgstr "圖表欄位" + +#: libraries/server_status_monitor.lib.php:346 +msgid "Chart arrangement" +msgstr "圖表排列" + +#: libraries/server_status_monitor.lib.php:349 +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 "" + +#: libraries/server_status_monitor.lib.php:363 +msgid "Reset to default" +msgstr "還原預設值" + +#: libraries/sql.lib.php:409 msgid "SQL result" msgstr "SQL 查詢結果" -#: libraries/sql.lib.php:464 -#, fuzzy -#| msgid "Generated by" +#: libraries/sql.lib.php:416 msgid "Generated by:" -msgstr "產生者" +msgstr "產生者:" -#: libraries/sql.lib.php:495 -#, fuzzy +#: libraries/sql.lib.php:447 #| msgid "Data file grow size" msgid "Detailed profile" -msgstr "資料檔案增長大小" +msgstr "簡介明細" -#: libraries/sql.lib.php:498 -#, fuzzy -#| msgid "Other" +#: libraries/sql.lib.php:450 msgid "Order" -msgstr "其他" +msgstr "順序" -#: libraries/sql.lib.php:500 libraries/sql.lib.php:546 -#, fuzzy -#| msgid "Startup" +#: libraries/sql.lib.php:452 libraries/sql.lib.php:498 msgid "State" -msgstr "起始頁" +msgstr "狀態" -#: libraries/sql.lib.php:543 +#: libraries/sql.lib.php:495 msgid "Summary by state" msgstr "" -#: libraries/sql.lib.php:551 -#, fuzzy -#| msgid "Total time:" +#: libraries/sql.lib.php:503 msgid "Total Time" -msgstr "總計耗時:" +msgstr "總計耗時" -#: libraries/sql.lib.php:553 -#, fuzzy -#| msgid "Time" +#: libraries/sql.lib.php:505 msgid "% Time" -msgstr "時間" +msgstr "% 時間" -#: libraries/sql.lib.php:555 -#, fuzzy -#| msgid "Close" +#: libraries/sql.lib.php:507 msgid "Calls" -msgstr "關閉" +msgstr "次呼叫" -#: libraries/sql.lib.php:557 -#, fuzzy -#| msgid "Time" +#: libraries/sql.lib.php:509 msgid "ø Time" -msgstr "時間" +msgstr "ø 時間" + +#: libraries/sql.lib.php:677 libraries/sql.lib.php:697 +msgid "Bookmark this SQL query" +msgstr "將此 SQL 查詢加爲書籤" + +#: libraries/sql.lib.php:681 +msgid "Label:" +msgstr "標籤:" + +#: libraries/sql.lib.php:689 libraries/sql_query_form.lib.php:326 +msgid "Let every user access this bookmark" +msgstr "讓所有使用者均可訪問此書籤" #: libraries/sql_query_form.lib.php:188 #, php-format @@ -9837,14 +9754,8 @@ msgid "Clear" msgstr "清除" #: libraries/sql_query_form.lib.php:318 -#, fuzzy -#| msgid "Bookmark this SQL query" msgid "Bookmark this SQL query:" -msgstr "將此 SQL 查詢加爲書籤" - -#: libraries/sql_query_form.lib.php:326 sql.php:1199 -msgid "Let every user access this bookmark" -msgstr "讓所有使用者均可訪問此書籤" +msgstr "將此 SQL 查詢加爲書籤:" #: libraries/sql_query_form.lib.php:332 msgid "Replace existing bookmark of same name" @@ -9949,7 +9860,7 @@ msgstr "追蹤已停用。" #: libraries/structure.lib.php:129 tbl_operations.php:329 #, php-format msgid "View %s has been dropped" -msgstr "已刪除 view %s" +msgstr "已刪除視表 %s" #: libraries/structure.lib.php:130 tbl_operations.php:330 #, php-format @@ -9980,7 +9891,7 @@ msgstr "僅選擇多餘" msgid "Sort" msgstr "排序" -#: libraries/structure.lib.php:1279 tbl_tracking.php:359 +#: libraries/structure.lib.php:1279 tbl_tracking.php:360 msgctxt "None for default" msgid "None" msgstr "無" @@ -10006,7 +9917,7 @@ msgstr "索引" #: libraries/structure.lib.php:1398 libraries/structure.lib.php:2060 #: libraries/structure.lib.php:2070 msgid "Spatial" -msgstr "" +msgstr "空間" #: libraries/structure.lib.php:1408 libraries/structure.lib.php:2062 #: libraries/structure.lib.php:2072 @@ -10015,24 +9926,20 @@ msgid "Fulltext" msgstr "全文搜尋" #: libraries/structure.lib.php:1423 libraries/structure.lib.php:1519 -#, fuzzy -#| msgid "Remove column(s)" msgid "Move columns" -msgstr "刪除欄位" +msgstr "移動欄位" #: libraries/structure.lib.php:1426 msgid "Move the columns by dragging them up and down." msgstr "" #: libraries/structure.lib.php:1460 -#, fuzzy -#| msgid "Print view" msgid "Edit view" -msgstr "列印預覽" +msgstr "編輯視表" #: libraries/structure.lib.php:1493 msgid "Relation view" -msgstr "關聯查看" +msgstr "關聯檢視" #: libraries/structure.lib.php:1505 msgid "Propose table structure" @@ -10067,8 +9974,6 @@ msgid "After %s" msgstr "於 %s 之後" #: libraries/structure.lib.php:1670 -#, fuzzy -#| msgid "Row Statistics" msgid "Row statistics" msgstr "行統計" @@ -10108,10 +10013,8 @@ msgid "A primary key has been added on %s" msgstr "已將 %s 設爲主鍵" #: libraries/structure.lib.php:2003 libraries/structure.lib.php:2074 -#, fuzzy -#| msgid "Browse distinct values" msgid "Distinct values" -msgstr "瀏覽非重複值 (DISTINCT)" +msgstr "不同的值" #: libraries/structure.lib.php:2006 libraries/structure.lib.php:2009 msgid "Add primary key" @@ -10122,10 +10025,8 @@ msgid "Add unique index" msgstr "新增唯一鍵" #: libraries/structure.lib.php:2024 libraries/structure.lib.php:2027 -#, fuzzy -#| msgid "Add index" msgid "Add SPATIAL index" -msgstr "新增索引" +msgstr "新增空間索引" #: libraries/structure.lib.php:2030 libraries/structure.lib.php:2033 msgid "Add FULLTEXT index" @@ -10144,17 +10045,13 @@ msgstr "有效" msgid "Table %1$s has been altered successfully" msgstr "已成功修改表 %1$s" -#: libraries/structure.lib.php:2413 tbl_tracking.php:457 tbl_tracking.php:481 -#, fuzzy -#| msgid "Query type" +#: libraries/structure.lib.php:2413 tbl_tracking.php:458 tbl_tracking.php:482 msgid "Query error" -msgstr "查詢方式" +msgstr "查詢錯誤" #: libraries/structure.lib.php:2509 -#, fuzzy -#| msgid "The selected users have been deleted successfully." msgid "The columns have been moved successfully." -msgstr "已成功刪除選中的使用者" +msgstr "欄位已搬移成功。" #: libraries/structure.lib.php:2557 #, php-format @@ -10178,10 +10075,8 @@ msgid "" msgstr "對於預設值,請只輸入單個值,不要加反斜槓或引號,請用此格式:a" #: libraries/tbl_columns_definition_form.inc.php:149 -#, fuzzy -#| msgid "Remove column(s)" msgid "Move column" -msgstr "刪除欄位" +msgstr "搬移欄位" #: libraries/tbl_columns_definition_form.inc.php:159 #, php-format @@ -10226,8 +10121,7 @@ msgid "first" msgstr "" #: libraries/tbl_columns_definition_form.inc.php:644 -#, fuzzy, php-format -#| msgid "After %s" +#, php-format msgid "after %s" msgstr "於 %s 之後" @@ -10236,28 +10130,21 @@ msgid "Table name" msgstr "資料資料表名稱" #: libraries/tbl_columns_definition_form.inc.php:838 -#, fuzzy -#| msgid "Storage Engine" msgid "Storage Engine:" -msgstr "儲存引擎" +msgstr "儲存引擎:" #: libraries/tbl_columns_definition_form.inc.php:842 -#, fuzzy -#| msgid "Collation" msgid "Collation:" -msgstr "排序規則" +msgstr "排序規則:" #: libraries/tbl_columns_definition_form.inc.php:876 -#, fuzzy -#| msgid "PARTITION definition" msgid "PARTITION definition:" -msgstr "分區定義" +msgstr "分區定義:" #: libraries/tbl_common.inc.php:54 -#, fuzzy, php-format -#| msgid "Tracking of %s.%s is activated." +#, php-format msgid "Tracking of %s is activated." -msgstr "%s.%s 的追蹤已啓用" +msgstr "%s 的追蹤已啓用。" #: libraries/user_preferences.inc.php:29 msgid "Manage your settings" @@ -10297,7 +10184,7 @@ msgstr "ZIP 包中有錯誤:" msgid "Fatal error: The navigation can only be accessed via AJAX" msgstr "" -#: pmd_display_field.php:60 pmd_save_pos.php:81 +#: pmd_display_field.php:60 pmd_save_pos.php:75 msgid "Modifications have been saved" msgstr "已儲存修改" @@ -10307,7 +10194,7 @@ msgstr "顯示/隱藏左側選單" #: pmd_general.php:86 msgid "View in fullscreen" -msgstr "" +msgstr "在全螢幕檢視" #: pmd_general.php:90 msgid "Exit fullscreen" @@ -10350,12 +10237,10 @@ msgid "Toggle small/big" msgstr "反向收縮/展開" #: pmd_general.php:141 -#, fuzzy -#| msgid "To select relation, click :" msgid "Toggle relation lines" -msgstr "要選擇關聯,點選:" +msgstr "請點選關聯行" -#: pmd_general.php:147 pmd_pdf.php:102 +#: pmd_general.php:147 pmd_pdf.php:101 msgid "Import/Export coordinates for PDF schema" msgstr "爲 PDF 大綱匯入/匯出座標" @@ -10376,10 +10261,8 @@ msgid "Hide/Show Tables with no relation" msgstr "隱藏/顯示沒有關聯的表" #: pmd_general.php:218 -#, fuzzy -#| msgid "Number of tables" msgid "Number of tables:" -msgstr "資料表數量" +msgstr "資料表數量:" #: pmd_general.php:467 msgid "Delete relation" @@ -10415,43 +10298,39 @@ msgstr "聚合" msgid "Active options" msgstr "目前選項" -#: pmd_pdf.php:50 +#: pmd_pdf.php:49 msgid "Page has been created" msgstr "已建立頁面" -#: pmd_pdf.php:53 +#: pmd_pdf.php:52 msgid "Page creation failed" msgstr "頁面建立失敗" -#: pmd_pdf.php:113 -#, fuzzy -#| msgid "Page" +#: pmd_pdf.php:112 msgid "Page:" -msgstr "頁面" +msgstr "頁面:" -#: pmd_pdf.php:123 +#: pmd_pdf.php:122 msgid "Import from selected page" msgstr "從所選頁匯入" -#: pmd_pdf.php:124 +#: pmd_pdf.php:123 msgid "Export to selected page" msgstr "匯出至所選頁" -#: pmd_pdf.php:126 +#: pmd_pdf.php:125 msgid "Create a page and export to it" msgstr "匯出至新頁" -#: pmd_pdf.php:138 +#: pmd_pdf.php:137 msgid "New page name: " msgstr "新頁面名: " -#: pmd_pdf.php:141 -#, fuzzy -#| msgid "Export/Import to scale" +#: pmd_pdf.php:140 msgid "Export/Import to scale:" -msgstr "按比例匯出/匯入" +msgstr "按比例匯出/匯入:" -#: pmd_pdf.php:146 +#: pmd_pdf.php:145 msgid "recommended" msgstr "推薦" @@ -10468,10 +10347,8 @@ msgid "FOREIGN KEY relation added" msgstr "已新增外部鍵關聯" #: pmd_relation_new.php:82 -#, fuzzy -#| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" -msgstr "錯誤:關聯未新增" +msgstr "錯誤:關聯未啟用!" #: pmd_relation_new.php:98 msgid "Internal relation added" @@ -10481,7 +10358,7 @@ msgstr "已新增行內部關聯" msgid "Relation deleted" msgstr "已刪除關聯" -#: pmd_save_pos.php:73 +#: pmd_save_pos.php:67 msgid "Error saving coordinates for Designer." msgstr "儲存設計器座標時出錯。" @@ -10562,10 +10439,8 @@ msgid "All" msgstr "全部" #: querywindow.php:154 -#, fuzzy -#| msgid "SQL history" msgid "SQL history:" -msgstr "SQL 歷史" +msgstr "SQL 歷史:" #: schema_edit.php:36 schema_edit.php:42 schema_edit.php:48 schema_edit.php:53 #, php-format @@ -10577,11 +10452,12 @@ msgid "File doesn't exist" msgstr "檔案不存在" #: server_databases.php:117 -#, fuzzy, php-format -#| msgid "%s databases have been dropped successfully." +#, php-format msgid "%1$d database has been dropped successfully." msgid_plural "%1$d databases have been dropped successfully." -msgstr[0] "已成功刪除 %s 個資料庫" +msgstr[0] "" +"已成功刪除 %1$d 個資料庫。\n" +"已成功刪除 %1$d 個資料庫。" #: server_databases.php:138 msgid "Databases statistics" @@ -10811,10 +10687,9 @@ msgid "Network traffic since startup: %s" msgstr "" #: server_status.php:106 -#, fuzzy, php-format -#| msgid "This MySQL server has been running for %s. It started up on %s." +#, php-format msgid "This MySQL server has been running for %1$s. It started up on %2$s." -msgstr "此 MySQL 伺服器已經運行了 %s,啓動時間爲 %s" +msgstr "此 MySQL 伺服器已經運行了 %1$s,啓動時間爲 %2$s。" #: server_status.php:116 msgid "" @@ -10871,15 +10746,14 @@ msgid "Command" msgstr "命令" #: server_status_advisor.php:44 -#, fuzzy msgid "Instructions" -msgstr "資料" +msgstr "指令" #: server_status_advisor.php:50 msgid "" "The Advisor system can provide recommendations on server variables by " "analyzing the server status variables." -msgstr "" +msgstr "輔導系統可以在分析伺服器狀態值後,提供伺服器變數的設定建議。" #: server_status_advisor.php:56 msgid "" @@ -10902,241 +10776,22 @@ msgid "" "no clearly measurable improvement." msgstr "" -#: server_status_monitor.php:453 -#, fuzzy -msgid "Monitor Instructions" -msgstr "資料" - -#: server_status_monitor.php:455 -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 " -"log_output to 'TABLE' and have either the slow_query_log or general_log " -"enabled. Note however, that the general_log produces a lot of data and " -"increases server load by up to 15%." -msgstr "" - -#: server_status_monitor.php:467 -msgid "" -"Unfortunately your Database server does not support logging to table, which " -"is a requirement for analyzing the database logs with phpMyAdmin. Logging to " -"table is supported by MySQL 5.1.6 and onwards. You may still use the server " -"charting features however." -msgstr "" - -#: server_status_monitor.php:482 -msgid "Using the monitor:" -msgstr "" - -#: server_status_monitor.php:485 -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_monitor.php:491 -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 " -"confirmed, this will load a table of grouped queries, there you may click on " -"any occurring SELECT statements to further analyze them." -msgstr "" - -#: server_status_monitor.php:501 -msgid "Please note:" -msgstr "" - -#: server_status_monitor.php:504 -msgid "" -"Enabling the general_log may increase the server load by 5-15%. Also be " -"aware that generating statistics from the logs is a load intensive task, so " -"it is advisable to select only a small time span and to disable the " -"general_log and empty its table once monitoring is not required any more." -msgstr "" - -#: server_status_monitor.php:515 server_status_monitor.php:701 -#, fuzzy -#| msgid "Add index" -msgid "Add chart" -msgstr "新增索引" - -#: server_status_monitor.php:519 -#, fuzzy -#| msgid "Remove database" -msgid "Preset chart" -msgstr "刪除資料庫" - -#: server_status_monitor.php:523 -#, fuzzy -#| msgid "See slave status table" -msgid "Status variable(s)" -msgstr "查看從伺服器狀態" - -#: server_status_monitor.php:526 -#, fuzzy -#| msgid "Select Tables" -msgid "Select series:" -msgstr "選擇表" - -#: server_status_monitor.php:528 -msgid "Commonly monitored" -msgstr "" - -#: server_status_monitor.php:544 -#, fuzzy -#| msgid "Invalid table name" -msgid "or type variable name:" -msgstr "無效的資料資料表名稱" - -#: server_status_monitor.php:551 -msgid "Display as differential value" -msgstr "" - -#: server_status_monitor.php:554 -msgid "Apply a divisor" -msgstr "" - -#: server_status_monitor.php:562 -msgid "Append unit to data values" -msgstr "" - -#: server_status_monitor.php:568 -#, fuzzy -#| msgid "Add a new server" -msgid "Add this series" -msgstr "新增伺服器" - -#: server_status_monitor.php:570 -msgid "Clear series" -msgstr "" - -#: server_status_monitor.php:573 -#, fuzzy -#| msgid "SQL queries" -msgid "Series in Chart:" -msgstr "SQL 查詢" - -#: server_status_monitor.php:584 -#, fuzzy -#| msgid "Show statistics" -msgid "Log statistics" -msgstr "顯示統計" - -#: server_status_monitor.php:585 -#, fuzzy -#| msgid "Select page" -msgid "Selected time range:" -msgstr "選擇頁" - -#: server_status_monitor.php:591 -msgid "Only retrieve SELECT,INSERT,UPDATE and DELETE Statements" -msgstr "" - -#: server_status_monitor.php:596 -msgid "Remove variable data in INSERT statements for better grouping" -msgstr "" - -#: server_status_monitor.php:599 -msgid "Choose from which log you want the statistics to be generated from." -msgstr "" - -#: server_status_monitor.php:602 -msgid "Results are grouped by query text." -msgstr "" - -#: server_status_monitor.php:606 -#, fuzzy -#| msgid "Query type" -msgid "Query analyzer" -msgstr "查詢方式" - -#: server_status_monitor.php:654 -#, fuzzy, php-format -#| msgid "Second" -msgid "%d second" -msgid_plural "%d seconds" -msgstr[0] "秒" - -#: server_status_monitor.php:657 -#, fuzzy, php-format -#| msgid "Minute" -msgid "%d minute" -msgid_plural "%d minutes" -msgstr[0] "分" - -#: server_status_monitor.php:674 -#, fuzzy -#| msgid "Textarea rows" -msgid "Start Monitor" -msgstr "文字框行" - -#: server_status_monitor.php:681 -msgid "Instructions/Setup" -msgstr "" - -#: server_status_monitor.php:685 -msgid "Done dragging (rearranging) charts" -msgstr "" - -#: server_status_monitor.php:704 -#, fuzzy -#| msgid "Enable highlighting" -msgid "Enable charts dragging" -msgstr "啓用醒目提示" - -#: server_status_monitor.php:708 -#, fuzzy -msgid "Refresh rate" -msgstr "重新整理" - -#: server_status_monitor.php:717 -#, fuzzy -#| msgid "Textarea columns" -msgid "Chart columns" -msgstr "文本框列" - -#: server_status_monitor.php:733 -#, fuzzy -#| msgid "Error management:" -msgid "Chart arrangement" -msgstr "錯誤管理:" - -#: server_status_monitor.php:736 -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_monitor.php:750 -#, fuzzy -#| msgid "Restore default value" -msgid "Reset to default" -msgstr "還原預設值" - #: server_status_queries.php:67 -#, fuzzy, php-format -#| msgid "Customize startup page" +#, php-format msgid "Questions since startup: %s" -msgstr "自訂起始頁" +msgstr "自啟動後的問題:%s" #: server_status_queries.php:79 -#, fuzzy -#| msgid "per hour" msgid "per hour:" -msgstr "每小時" +msgstr "每小時:" #: server_status_queries.php:82 -#, fuzzy -#| msgid "per minute" msgid "per minute:" -msgstr "每分鐘" +msgstr "每分鐘:" #: server_status_queries.php:86 -#, fuzzy -#| msgid "per second" msgid "per second:" -msgstr "每秒" +msgstr "每秒:" #: server_status_queries.php:119 msgid "Statements" @@ -11148,37 +10803,28 @@ msgid "#" msgstr "" #: server_status_variables.php:78 server_variables.php:156 -#, fuzzy msgid "Filters" msgstr "過濾" #: server_status_variables.php:82 server_variables.php:158 -#, fuzzy -#| msgid "Do not change the password" msgid "Containing the word:" -msgstr "保持原密碼" +msgstr "包含這個字:" #: server_status_variables.php:89 -#, fuzzy -#| msgid "Show open tables" msgid "Show only alert values" -msgstr "顯示開啟的表" +msgstr "只顯示警示值" #: server_status_variables.php:94 msgid "Filter by category…" msgstr "" #: server_status_variables.php:114 -#, fuzzy -#| msgid "Show open tables" msgid "Show unformatted values" -msgstr "顯示開啟的表" +msgstr "顯示未格式化的值" #: server_status_variables.php:133 -#, fuzzy -#| msgid "Related Links" msgid "Related links:" -msgstr "相關連結" +msgstr "相關連結:" #: server_status_variables.php:330 msgid "" @@ -11187,10 +10833,8 @@ msgid "" msgstr "" #: server_status_variables.php:334 -#, fuzzy -#| msgid "Could not connect to MySQL server" msgid "The number of failed attempts to connect to the MySQL server." -msgstr "無法連線到 MySQL 伺服器" +msgstr "無法連線到 MySQL 伺服器。" #: server_status_variables.php:337 msgid "" @@ -11562,10 +11206,8 @@ msgid "" msgstr "鍵快取中已經使用的塊數。該值指示在某個時刻使用了最多塊數的數量。" #: server_status_variables.php:596 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of used key cache (calculated value)" -msgstr "匯入檔案的格式" +msgstr "已使用鍵值緩存的百分比(計算值)" #: server_status_variables.php:599 msgid "The number of requests to read a key block from the cache." @@ -11801,10 +11443,8 @@ msgstr "" "thread_cache_size 的值 (如果程序狀況良好,這麼做通常並不會帶來顯著的性能提升)" #: server_status_variables.php:758 -#, fuzzy -#| msgid "Tracking is not active." msgid "Thread cache hit rate (calculated value)" -msgstr "追蹤已停用" +msgstr "執行序緩存命中率(計算值)" #: server_status_variables.php:761 msgid "The number of threads that are not sleeping." @@ -11866,10 +11506,8 @@ msgid "Insecure connection" msgstr "非安全連線" #: setup/frames/index.inc.php:98 -#, fuzzy -#| msgid "Modifications have been saved" msgid "Configuration saved." -msgstr "修改已儲存" +msgstr "設定已儲存。" #: setup/frames/index.inc.php:99 msgid "" @@ -12108,10 +11746,8 @@ msgid "" msgstr "此系統目前不支援 %sZip 解壓縮%s所必須的 (%s) 函數。" #: setup/lib/index.lib.php:348 -#, fuzzy -#| msgid "You should use SSL connections if your web server supports it." msgid "You should use SSL connections if your database server supports it." -msgstr "如果伺服器支援,您應該使用 SSL 連線" +msgstr "如果資料庫支援,您應該使用 SSL 連線。" #: setup/lib/index.lib.php:363 msgid "You should use mysqli for performance reasons." @@ -12130,60 +11766,41 @@ msgid "Key should contain letters, numbers [em]and[/em] special characters." msgstr "短語密碼應包含字母、數字[em]和[/em]特殊字元。" #: setup/validate.php:22 -#, fuzzy -#| msgid "No databases" msgid "Wrong data" -msgstr "沒有資料庫" +msgstr "錯誤的資料" -#: sql.php:216 +#: sql.php:183 #, php-format msgid "Using bookmark \"%s\" as default browse query." msgstr "使用書籤 \"%s\" 作爲預設的查詢。" -#: sql.php:298 -#, fuzzy -#| msgid "Bookmark %s created" +#: sql.php:266 msgid "Bookmark not created" -msgstr "已建立書籤 %s" +msgstr "書籤並未建立" -#: sql.php:842 +#: sql.php:673 msgid "Showing as PHP code" msgstr "顯示爲 PHP 程式碼" -#: sql.php:847 +#: sql.php:678 msgid "Validated SQL" msgstr "已校驗的 SQL" -#: sql.php:1101 -#, fuzzy, php-format -#| msgid "" -#| "This table does not contain a unique column. Features related to the grid " -#| "edit, checkbox, Edit, Copy and Delete links may not work after saving." +#: sql.php:932 +#, php-format msgid "" "Table %s does not contain a unique column. Grid edit, checkbox, Edit, Copy " "and Delete features are not available." -msgstr "這個資料表不含唯一的資料欄位,跟修改、複製、刪除有關的功能可能會無效。" +msgstr "資料表 %s 不含唯一的資料欄位,將無法執行修改、複製、刪除等相關的功能。" -#: sql.php:1154 +#: sql.php:985 #, php-format msgid "Problems with indexes of table `%s`" msgstr "資料表 `%s` 的索引存在問題" -#: sql.php:1187 sql.php:1207 -msgid "Bookmark this SQL query" -msgstr "將此 SQL 查詢加爲書籤" - -#: sql.php:1191 -#, fuzzy -#| msgid "Label" -msgid "Label:" -msgstr "標籤" - #: tbl_chart.php:38 -#, fuzzy -#| msgid "No databases" msgid "No data to display" -msgstr "沒有資料庫" +msgstr "無資料可顯示" #: tbl_chart.php:62 tbl_gis_visualization.php:24 msgid "No SQL query was set to fetch data." @@ -12194,32 +11811,24 @@ msgid "No numeric columns present in the table to plot." msgstr "" #: tbl_chart.php:154 -#, fuzzy -#| msgid "Bar" msgctxt "Chart type" msgid "Bar" -msgstr "柱狀圖" +msgstr "長條圖" #: tbl_chart.php:156 -#, fuzzy -#| msgid "Column" msgctxt "Chart type" msgid "Column" msgstr "欄位" #: tbl_chart.php:159 -#, fuzzy -#| msgid "Line" msgctxt "Chart type" msgid "Line" msgstr "折線圖" #: tbl_chart.php:161 -#, fuzzy -#| msgid "Inline" msgctxt "Chart type" msgid "Spline" -msgstr "行間" +msgstr "曲線圖" #: tbl_chart.php:163 msgctxt "Chart type" @@ -12227,56 +11836,46 @@ msgid "Area" msgstr "" #: tbl_chart.php:166 -#, fuzzy -#| msgid "Pie" msgctxt "Chart type" msgid "Pie" msgstr "餅圖" #: tbl_chart.php:170 -#, fuzzy -#| msgid "Time" msgctxt "Chart type" msgid "Timeline" -msgstr "時間" +msgstr "時間軸" #: tbl_chart.php:177 msgid "Stacked" msgstr "堆疊" #: tbl_chart.php:180 -#, fuzzy -#| msgid "Report title:" msgid "Chart title" -msgstr "報告標題:" +msgstr "圖表標題" #: tbl_chart.php:184 msgid "X-Axis:" msgstr "" #: tbl_chart.php:200 -#, fuzzy -#| msgid "SQL queries" msgid "Series:" -msgstr "SQL 查詢" +msgstr "序列:" #: tbl_chart.php:229 -#, fuzzy -#| msgid "X Axis label" msgid "X-Axis label:" -msgstr "水平軸標籤" +msgstr "水平軸標籤:" #: tbl_chart.php:232 -#, fuzzy -#| msgid "Value" msgid "X Values" -msgstr "值" +msgstr "水平軸值" #: tbl_chart.php:234 -#, fuzzy -#| msgid "Y Axis label" msgid "Y-Axis label:" -msgstr "豎直軸標籤" +msgstr "垂直軸標籤:" + +#: tbl_chart.php:241 +msgid "Start row:" +msgstr "開始列:" #: tbl_create.php:34 #, php-format @@ -12302,38 +11901,28 @@ msgid "Invalid table name" msgstr "無效的資料資料表名稱" #: tbl_gis_visualization.php:114 -#, fuzzy -#| msgid "Display servers selection" msgid "Display GIS Visualization" -msgstr "顯示伺服器選擇" +msgstr "顯示可視化地理訊息" #: tbl_gis_visualization.php:119 -#, fuzzy -#| msgid "Textarea columns" msgid "Label column" -msgstr "文本框列" +msgstr "標籤欄位" #: tbl_gis_visualization.php:121 -#, fuzzy -#| msgid "- none -" msgid "-- None --" -msgstr "- 無 -" +msgstr "-- 無 --" #: tbl_gis_visualization.php:135 -#, fuzzy -#| msgid "Total count" msgid "Spatial column" -msgstr "總數量" +msgstr "空間欄位" #: tbl_gis_visualization.php:150 msgid "Redraw" msgstr "重繪" #: tbl_gis_visualization.php:178 -#, fuzzy -#| msgid "Table name" msgid "File name" -msgstr "資料資料表名稱" +msgstr "檔案名稱" #: tbl_indexes.php:71 msgid "The name of the primary key must be \"PRIMARY\"!" @@ -12370,22 +11959,16 @@ msgid "The table name is empty!" msgstr "資料表名稱不能爲空!" #: tbl_printview.php:65 -#, fuzzy -#| msgid "Show tables" msgid "Showing tables:" -msgstr "顯示資料表" +msgstr "顯示資料表:" #: tbl_printview.php:296 -#, fuzzy -#| msgid "Space usage" msgid "Space usage:" -msgstr "已用空間" +msgstr "已用空間:" #: tbl_printview.php:345 -#, fuzzy -#| msgid "Row Statistics" msgid "Row Statistics:" -msgstr "行統計" +msgstr "行統計:" #: tbl_relation.php:213 #, php-format @@ -12407,181 +11990,158 @@ msgid "Foreign key constraint" msgstr "外部鍵約束" #: tbl_relation.php:500 -#, fuzzy -#| msgid "Constraints for table" msgid "Constraint name" -msgstr "資料表的 Constraints" +msgstr "約束名稱" #: tbl_relation.php:531 -#, fuzzy -#| msgid "No index defined!" msgid "No index defined! Create one below" -msgstr "沒有已定義的索引!" +msgstr "未定義索引! 請建立一個" #: tbl_relation.php:546 -#, fuzzy -#| msgid "Choose column to display" msgid "Choose column to display:" -msgstr "選擇要顯示的欄位" +msgstr "選擇要顯示的欄位:" #: tbl_structure.php:125 -#, fuzzy -#| msgid "No rows selected" msgid "No column selected." -msgstr "沒有選中任何行" +msgstr "未選定欄位。" -#: tbl_tracking.php:135 +#: tbl_tracking.php:136 #, php-format msgid "Tracking report for table `%s`" msgstr "`%s` 的追蹤報告" -#: tbl_tracking.php:205 -#, fuzzy, php-format -#| msgid "Version %s is created, tracking for %s.%s is activated." +#: tbl_tracking.php:206 +#, php-format msgid "Version %1$s was created, tracking for %2$s is active." -msgstr "已建立版本 %s,%s.%s 的追蹤已啓用" +msgstr "已建立版本 %1$s,%2$s 的追蹤已啓用。" -#: tbl_tracking.php:222 -#, fuzzy, php-format -#| msgid "Tracking of %s.%s is activated." +#: tbl_tracking.php:223 +#, php-format msgid "Tracking for %1$s was deactivated at version %2$s." -msgstr "%s.%s 的追蹤已啓用" +msgstr "在版本 %2$s 已停用 %1$s 的追蹤。" -#: tbl_tracking.php:239 -#, fuzzy, php-format -#| msgid "Tracking of %s.%s is activated." +#: tbl_tracking.php:240 +#, php-format msgid "Tracking for %1$s was activated at version %2$s." -msgstr "%s.%s 的追蹤已啓用" +msgstr "在版本 %2$s 已啟用 %1$s 的追。" -#: tbl_tracking.php:253 +#: tbl_tracking.php:254 msgid "SQL statements executed." msgstr "SQL 指令已執行。" -#: tbl_tracking.php:260 +#: tbl_tracking.php:261 msgid "" "You can execute the dump by creating and using a temporary database. Please " "ensure that you have the privileges to do so." msgstr "您可以透過建立一個臨時資料庫來執行這個匯出。請確保您有足夠的權限。" -#: tbl_tracking.php:262 +#: tbl_tracking.php:263 msgid "Comment out these two lines if you do not need them." msgstr "如果您不需要,請註解以下兩行。" -#: tbl_tracking.php:272 +#: tbl_tracking.php:273 msgid "SQL statements exported. Please copy the dump or execute it." msgstr "SQL 指令已匯出。請複製或執行它。" -#: tbl_tracking.php:310 +#: tbl_tracking.php:311 #, php-format msgid "Version %s snapshot (SQL code)" msgstr "版本 %s 的快照 (SQL 程式碼)" -#: tbl_tracking.php:454 -#, fuzzy -#| msgid "Track these data definition statements:" +#: tbl_tracking.php:455 msgid "Tracking data definition successfully deleted" -msgstr "追蹤這些資料定義的語句:" +msgstr "追蹤資料定義已刪除" -#: tbl_tracking.php:478 -#, fuzzy -#| msgid "Track these data manipulation statements:" +#: tbl_tracking.php:479 msgid "Tracking data manipulation successfully deleted" -msgstr "追蹤這些資料模擬的語句:" +msgstr "追蹤資料操作已刪除" -#: tbl_tracking.php:493 +#: tbl_tracking.php:494 msgid "Tracking statements" msgstr "追蹤指令" -#: tbl_tracking.php:524 tbl_tracking.php:672 -#, fuzzy, php-format -#| msgid "Show %s with dates from %s to %s by user %s %s" +#: tbl_tracking.php:525 tbl_tracking.php:673 +#, php-format msgid "Show %1$s with dates from %2$s to %3$s by user %4$s %5$s" msgstr "顯示自 %2$s 起至 %3$s 使用者 %4$s 執行的 %1$s %5$s" -#: tbl_tracking.php:532 -#, fuzzy -#| msgid "Delete tracking data for this table" +#: tbl_tracking.php:533 msgid "Delete tracking data row from report" -msgstr "刪除此資料表的追蹤資料" +msgstr "刪除報表的追蹤資料列" -#: tbl_tracking.php:546 -#, fuzzy -#| msgid "No databases" +#: tbl_tracking.php:547 msgid "No data" -msgstr "沒有資料庫" +msgstr "沒有資料" -#: tbl_tracking.php:555 tbl_tracking.php:617 +#: tbl_tracking.php:556 tbl_tracking.php:618 msgid "Date" msgstr "日期" -#: tbl_tracking.php:557 +#: tbl_tracking.php:558 msgid "Data definition statement" msgstr "資料定義指令" -#: tbl_tracking.php:619 +#: tbl_tracking.php:620 msgid "Data manipulation statement" msgstr "資料操作指令" -#: tbl_tracking.php:677 +#: tbl_tracking.php:678 msgid "SQL dump (file download)" msgstr "SQL 匯出 (檔案下載)" -#: tbl_tracking.php:678 +#: tbl_tracking.php:679 msgid "SQL dump" msgstr "SQL 匯出" -#: tbl_tracking.php:680 +#: tbl_tracking.php:681 msgid "This option will replace your table and contained data." msgstr "該選項將導致目前表的結構和資料被替換。" -#: tbl_tracking.php:681 +#: tbl_tracking.php:682 msgid "SQL execution" msgstr "執行 SQL 指令" -#: tbl_tracking.php:699 +#: tbl_tracking.php:700 #, php-format msgid "Export as %s" msgstr "匯出爲 %s" -#: tbl_tracking.php:736 +#: tbl_tracking.php:737 msgid "Show versions" msgstr "查看版本" -#: tbl_tracking.php:824 -#, fuzzy, php-format -#| msgid "Deactivate tracking for %s.%s" +#: tbl_tracking.php:825 +#, php-format msgid "Deactivate tracking for %s" -msgstr "停用 %s.%s 的追蹤" +msgstr "停用 %s 的追蹤" -#: tbl_tracking.php:830 +#: tbl_tracking.php:831 msgid "Deactivate now" msgstr "立即停用" -#: tbl_tracking.php:840 -#, fuzzy, php-format -#| msgid "Activate tracking for %s.%s" +#: tbl_tracking.php:841 +#, php-format msgid "Activate tracking for %s" -msgstr "啓用 %s.%s 的追蹤" +msgstr "啓用 %s 的追蹤" -#: tbl_tracking.php:846 +#: tbl_tracking.php:847 msgid "Activate now" msgstr "立即啓用" -#: tbl_tracking.php:859 -#, fuzzy, php-format -#| msgid "Create version %s of %s.%s" +#: tbl_tracking.php:860 +#, php-format msgid "Create version %1$s of %2$s" -msgstr "爲 %2$s.%3$s 建立版本 %1$s" +msgstr "爲 %2$s 建立版本 %1$s" -#: tbl_tracking.php:867 +#: tbl_tracking.php:868 msgid "Track these data definition statements:" msgstr "追蹤下列資料定義指令:" -#: tbl_tracking.php:875 +#: tbl_tracking.php:876 msgid "Track these data manipulation statements:" msgstr "追蹤下列資料操作指令:" -#: tbl_tracking.php:885 +#: tbl_tracking.php:886 msgid "Create version" msgstr "建立版本" @@ -12616,11 +12176,11 @@ msgstr "設定檔案己更新。" #: view_create.php:178 msgid "VIEW name" -msgstr "view名" +msgstr "視表名稱" #: view_operations.php:91 msgid "Rename view to" -msgstr "將 view改名爲" +msgstr "將視表更名為" #: libraries/advisory_rules.txt:49 msgid "Uptime below one day" @@ -12642,10 +12202,8 @@ msgid "The uptime is only %s" msgstr "" #: libraries/advisory_rules.txt:56 -#, fuzzy -#| msgid "Versions" msgid "Questions below 1,000" -msgstr "版本" +msgstr "前 1,000 個問題" #: libraries/advisory_rules.txt:59 msgid "" @@ -12660,16 +12218,13 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:61 -#, fuzzy, php-format -#| msgid "Current connection" +#, php-format msgid "Current amount of Questions: %s" -msgstr "目前連線" +msgstr "目前問題總數: %s" #: libraries/advisory_rules.txt:63 -#, fuzzy -#| msgid "Show SQL queries" msgid "Percentage of slow queries" -msgstr "顯示 SQL 查詢" +msgstr "緩慢查詢百分比" #: libraries/advisory_rules.txt:66 msgid "" @@ -12688,10 +12243,8 @@ msgid "The slow query rate should be below 5%%, your value is %s%%." msgstr "" #: libraries/advisory_rules.txt:70 -#, fuzzy -#| msgid "Flush query cache" msgid "Slow query rate" -msgstr "強制更新查詢快取" +msgstr "緩慢查詢率" #: libraries/advisory_rules.txt:73 msgid "" @@ -12706,10 +12259,8 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:77 -#, fuzzy -#| msgid "SQL queries" msgid "Long query time" -msgstr "SQL 查詢" +msgstr "超長查詢時間" #: libraries/advisory_rules.txt:80 msgid "" @@ -12724,22 +12275,17 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:82 -#, fuzzy, php-format -#| msgid "long_query_time is set to %d second(s)." +#, php-format msgid "long_query_time is currently set to %ds." -msgstr "long_query_time已設為%d秒" +msgstr "long_query_time 已設為 %d 秒。" #: libraries/advisory_rules.txt:84 libraries/advisory_rules.txt:91 -#, fuzzy -#| msgid "Show query box" msgid "Slow query logging" -msgstr "顯示查詢框" +msgstr "緩慢查詢紀錄" #: libraries/advisory_rules.txt:87 libraries/advisory_rules.txt:94 -#, fuzzy -#| msgid "slow_query_log is enabled." msgid "The slow query log is disabled." -msgstr "slow_query_log已啟用" +msgstr "已禁用緩慢查詢。" #: libraries/advisory_rules.txt:88 msgid "" @@ -12748,10 +12294,8 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:89 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "log_slow_queries is set to 'OFF'" -msgstr "long_query_time已設為%d秒" +msgstr "log_slow_queries 已設為 'OFF'" #: libraries/advisory_rules.txt:95 msgid "" @@ -12760,16 +12304,12 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:96 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "slow_query_log is set to 'OFF'" -msgstr "long_query_time已設為%d秒" +msgstr "slow_query_log 已設為 'OFF'" #: libraries/advisory_rules.txt:100 -#, fuzzy -#| msgid "Select Tables" msgid "Release Series" -msgstr "選擇表" +msgstr "釋放序列" #: libraries/advisory_rules.txt:103 msgid "The MySQL server version less than 5.1." @@ -12783,16 +12323,13 @@ msgstr "" #: libraries/advisory_rules.txt:105 libraries/advisory_rules.txt:112 #: libraries/advisory_rules.txt:119 -#, fuzzy, php-format -#| msgid "Create version" +#, php-format msgid "Current version: %s" -msgstr "建立版本" +msgstr "目前版本: %s" #: libraries/advisory_rules.txt:107 libraries/advisory_rules.txt:114 -#, fuzzy -#| msgid "Version" msgid "Minor Version" -msgstr "版本" +msgstr "次要版本" #: libraries/advisory_rules.txt:110 msgid "Version less than 5.1.30 (the first GA release of 5.1)." @@ -12809,17 +12346,13 @@ msgid "Version less than 5.5.8 (the first GA release of 5.5)." msgstr "" #: libraries/advisory_rules.txt:118 -#, fuzzy -#| msgid "You should upgrade to %s %s or later." msgid "You should upgrade, to a stable version of MySQL 5.5" -msgstr "您應升級到 %s %s 或更高版本。" +msgstr "您應升級到 MySQL 5.5 的一個穩定版本" #: libraries/advisory_rules.txt:121 libraries/advisory_rules.txt:128 #: libraries/advisory_rules.txt:135 -#, fuzzy -#| msgid "Description" msgid "Distribution" -msgstr "說明" +msgstr "分佈" #: libraries/advisory_rules.txt:124 msgid "Version is compiled from source, not a MySQL official binary." @@ -12858,10 +12391,8 @@ msgid "Version string (%s) matches Drizzle versioning scheme" msgstr "" #: libraries/advisory_rules.txt:142 -#, fuzzy -#| msgid "MySQL charset" msgid "MySQL Architecture" -msgstr "MySQL 字集" +msgstr "MySQL 架構" #: libraries/advisory_rules.txt:145 msgid "MySQL is not compiled as a 64-bit package." @@ -12880,16 +12411,12 @@ msgid "Available memory on this host: %s" msgstr "" #: libraries/advisory_rules.txt:153 -#, fuzzy -#| msgid "Query cache" msgid "Query cache disabled" -msgstr "查詢快取" +msgstr "查詢快取已被禁用" #: libraries/advisory_rules.txt:156 -#, fuzzy -#| msgid "The server is not responding" msgid "The query cache is not enabled." -msgstr "伺服器沒有響應" +msgstr "查詢快取並未啟用。" #: libraries/advisory_rules.txt:157 msgid "" @@ -12898,22 +12425,21 @@ msgid "" "and setting {query_cache_type} to 'ON'. Note: If you are using " "memcached, ignore this recommendation." msgstr "" +"如果查詢快取設定正確的話,可以大幅增進效能。設定 {query_cache_size} 為兩位數" +"的 MB 值,及 {query_cache_type} 為 'ON',即可啟用之。注意: 如果您已使" +"用 memcached 的話,那麼請忽略這個建議。" #: libraries/advisory_rules.txt:158 msgid "query_cache_size is set to 0 or query_cache_type is set to 'OFF'" msgstr "" #: libraries/advisory_rules.txt:160 -#, fuzzy -#| msgid "Query cache" msgid "Query caching method" -msgstr "查詢快取" +msgstr "查詢快取方法" #: libraries/advisory_rules.txt:163 -#, fuzzy -#| msgid "Query cache" msgid "Suboptimal caching method." -msgstr "查詢快取" +msgstr "次佳的查詢快取方法。" #: libraries/advisory_rules.txt:164 msgid "" @@ -12931,10 +12457,9 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:167 -#, fuzzy, php-format -#| msgid "Query cache" +#, php-format msgid "Query cache efficiency (%%)" -msgstr "查詢快取" +msgstr "查詢快取效能(%%)" #: libraries/advisory_rules.txt:170 msgid "Query cache not running efficiently, it has a low hit rate." @@ -12945,15 +12470,13 @@ msgid "Consider increasing {query_cache_limit}." msgstr "" #: libraries/advisory_rules.txt:172 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "The current query cache hit rate of %s%% is below 20%%" -msgstr "排序快取大小" +msgstr "查詢快取命中率 %s%% 低於 20%%" #: libraries/advisory_rules.txt:174 -#, fuzzy msgid "Query Cache usage" -msgstr "查詢快取" +msgstr "查詢快取使用狀況" #: libraries/advisory_rules.txt:177 #, php-format @@ -12974,16 +12497,12 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:181 -#, fuzzy -#| msgid "Query cache" msgid "Query cache fragmentation" -msgstr "查詢快取" +msgstr "查詢快取片段狀況" #: libraries/advisory_rules.txt:184 -#, fuzzy -#| msgid "The server is not responding" msgid "The query cache is considerably fragmented." -msgstr "伺服器沒有響應" +msgstr "這個查詢快取已支離破碎,不適合再使用。" #: libraries/advisory_rules.txt:185 msgid "" @@ -13006,18 +12525,14 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:188 -#, fuzzy -#| msgid "Query cache" msgid "Query cache low memory prunes" -msgstr "查詢快取" +msgstr "查詢快取低記憶體縮減" #: libraries/advisory_rules.txt:191 -#, fuzzy -#| msgid "The amount of free memory for query cache." msgid "" "Cached queries are removed due to low query cache memory from the query " "cache." -msgstr "查詢快取中空閒的記憶體總數" +msgstr "由於低記憶體關係,這個查詢快取將被移除。" #: libraries/advisory_rules.txt:192 msgid "" @@ -13034,10 +12549,8 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:195 -#, fuzzy -#| msgid "Query cache" msgid "Query cache max size" -msgstr "查詢快取" +msgstr "查詢快取最大大小" #: libraries/advisory_rules.txt:198 msgid "" @@ -13052,16 +12565,13 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:200 -#, fuzzy, php-format -#| msgid "Create version" +#, php-format msgid "Current query cache size: %s" -msgstr "建立版本" +msgstr "目前查詢快取大小: %s" #: libraries/advisory_rules.txt:202 -#, fuzzy -#| msgid "Query results" msgid "Query cache min result size" -msgstr "查詢結果" +msgstr "查詢快取最小結果大小" #: libraries/advisory_rules.txt:205 msgid "" @@ -13085,16 +12595,12 @@ msgid "query_cache_limit is set to 1 MiB" msgstr "" #: libraries/advisory_rules.txt:211 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Percentage of sorts that cause temporary tables" -msgstr "允許建立臨時表" +msgstr "因排序建立的臨時表百分比" #: libraries/advisory_rules.txt:214 libraries/advisory_rules.txt:221 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Too many sorts are causing temporary tables." -msgstr "允許建立臨時表" +msgstr "太多排序產生的臨時表。" #: libraries/advisory_rules.txt:215 libraries/advisory_rules.txt:222 msgid "" @@ -13110,23 +12616,18 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:218 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Rate of sorts that cause temporary tables" -msgstr "允許建立臨時表" +msgstr "排序產生的臨時表比率" #: libraries/advisory_rules.txt:223 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "" "Temporary tables average: %s, this value should be less than 1 per hour." -msgstr "排序快取大小" +msgstr "平均臨時表: %s,此值應每小時小於1。" #: libraries/advisory_rules.txt:225 -#, fuzzy -#| msgid "Textarea rows" msgid "Sort rows" -msgstr "文字框行" +msgstr "排序筆數" #: libraries/advisory_rules.txt:228 msgid "There are lots of rows being sorted." @@ -13146,16 +12647,12 @@ msgid "Sorted rows average: %s" msgstr "" #: libraries/advisory_rules.txt:233 -#, fuzzy -#| msgid "There are no files to upload" msgid "Rate of joins without indexes" -msgstr "沒有可上傳的檔案" +msgstr "無索引的結合比率" #: libraries/advisory_rules.txt:236 -#, fuzzy -#| msgid "There are no files to upload" msgid "There are too many joins without indexes." -msgstr "沒有可上傳的檔案" +msgstr "有太多的結合未使用索引。" #: libraries/advisory_rules.txt:237 msgid "" @@ -13164,22 +12661,17 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:238 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Table joins average: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "平均資料表結合: %s,此值應每小時小於1" #: libraries/advisory_rules.txt:240 -#, fuzzy -#| msgid "There are no files to upload" msgid "Rate of reading first index entry" -msgstr "沒有可上傳的檔案" +msgstr "讀取第一個索引項目比率" #: libraries/advisory_rules.txt:243 -#, fuzzy -#| msgid "The number of pending log file fsyncs." msgid "The rate of reading the first index entry is high." -msgstr "目前掛起的 fsync 日志檔案數" +msgstr "讀取第一個索引項目比率過髙。" #: libraries/advisory_rules.txt:244 msgid "" @@ -13192,22 +12684,17 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:245 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Index scans average: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "平均索引掃瞄: %s,此值應每小時小於1" #: libraries/advisory_rules.txt:247 -#, fuzzy -#| msgid "Format of imported file" msgid "Rate of reading fixed position" -msgstr "匯入檔案的格式" +msgstr "讀取固定位置比率" #: libraries/advisory_rules.txt:250 -#, fuzzy -#| msgid "The number of pending log file fsyncs." msgid "The rate of reading data from a fixed position is high." -msgstr "目前掛起的 fsync 日志檔案數" +msgstr "讀取資料固定位置比率過高。" #: libraries/advisory_rules.txt:251 msgid "" @@ -13224,16 +12711,12 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:254 -#, fuzzy -#| msgid "Create table" msgid "Rate of reading next table row" -msgstr "建立資料表" +msgstr "讀取資料表下一筆比例" #: libraries/advisory_rules.txt:257 -#, fuzzy -#| msgid "The current number of pending writes." msgid "The rate of reading the next table row is high." -msgstr "目前掛起的寫操作數" +msgstr "讀取資料表下一筆比例過高。" #: libraries/advisory_rules.txt:258 msgid "" @@ -13242,11 +12725,10 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:259 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "" "Rate of reading next table row: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "平均讀取資料表下一筆: %s,此值應每小時小於1" #: libraries/advisory_rules.txt:262 msgid "tmp_table_size vs. max_heap_table_size" @@ -13270,10 +12752,8 @@ msgid "Current values are tmp_table_size: %s, max_heap_table_size: %s" msgstr "" #: libraries/advisory_rules.txt:269 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of temp tables on disk" -msgstr "匯入檔案的格式" +msgstr "臨時表在磁碟的比率" #: libraries/advisory_rules.txt:272 libraries/advisory_rules.txt:279 msgid "" @@ -13300,11 +12780,8 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:276 -#, fuzzy -#| msgid "%s table" -#| msgid_plural "%s tables" msgid "Temp disk rate" -msgstr "%s 張資料表" +msgstr "暫存磁碟比率" #: libraries/advisory_rules.txt:280 msgid "" @@ -13325,10 +12802,8 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:296 -#, fuzzy -#| msgid "Sort buffer size" msgid "MyISAM key buffer size" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝大小" #: libraries/advisory_rules.txt:299 msgid "Key buffer is not initialized. No MyISAM indexes will be cached." @@ -13341,22 +12816,18 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:301 -#, fuzzy -#| msgid "Sort buffer size" msgid "key_buffer_size is 0" -msgstr "排序快取大小" +msgstr "key_buffer_size 為零" #: libraries/advisory_rules.txt:303 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Max %% MyISAM key buffer ever used" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝曾用最大 %%" #: libraries/advisory_rules.txt:306 libraries/advisory_rules.txt:314 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "MyISAM key buffer (index cache) %% used is low." -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝(索引快取) %% 使用過低。" #: libraries/advisory_rules.txt:307 libraries/advisory_rules.txt:315 msgid "" @@ -13366,29 +12837,23 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:308 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "" "max %% MyISAM key buffer ever used: %s%%, this value should be above 95%%" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝曾使用最大 %%: %s%%, 這個值應該要在 95%% 以上" #: libraries/advisory_rules.txt:311 -#, fuzzy -#| msgid "Sort buffer size" msgid "Percentage of MyISAM key buffer used" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝使用百分比" #: libraries/advisory_rules.txt:316 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "%% MyISAM key buffer used: %s%%, this value should be above 95%%" -msgstr "排序快取大小" +msgstr "MyISAM 鍵值緩衝使用 %% : %s%%, 這個值應該在 95%% 以上" #: libraries/advisory_rules.txt:318 -#, fuzzy -#| msgid "Show SQL queries" msgid "Percentage of index reads from memory" -msgstr "顯示 SQL 查詢" +msgstr "從記憶體中讀取索引的百分比" #: libraries/advisory_rules.txt:321 #, php-format @@ -13400,22 +12865,17 @@ msgid "You may need to increase {key_buffer_size}." msgstr "" #: libraries/advisory_rules.txt:323 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Index reads from memory: %s%%, this value should be above 95%%" -msgstr "排序快取大小" +msgstr "從記憶體中讀取索引: %s%%, 這個值應該在 95%% 以上" #: libraries/advisory_rules.txt:327 -#, fuzzy -#| msgid "Create table" msgid "Rate of table open" -msgstr "建立資料表" +msgstr "資料表開啟率" #: libraries/advisory_rules.txt:330 -#, fuzzy -#| msgid "The current number of pending writes." msgid "The rate of opening tables is high." -msgstr "目前掛起的寫操作數" +msgstr "資料表開啟率過高。" #: libraries/advisory_rules.txt:331 msgid "" @@ -13424,16 +12884,13 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:332 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Opened table rate: %s, this value should be less than 10 per hour" -msgstr "排序快取大小" +msgstr "資料表開啟率: %s,這個值應該每小時低於 10" #: libraries/advisory_rules.txt:334 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of used open files limit" -msgstr "匯入檔案的格式" +msgstr "已使用開啟檔案限制百分比" #: libraries/advisory_rules.txt:337 msgid "" @@ -13454,60 +12911,48 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:341 -#, fuzzy -#| msgid "Format of imported file" msgid "Rate of open files" -msgstr "匯入檔案的格式" +msgstr "開啟檔案比率" #: libraries/advisory_rules.txt:344 -#, fuzzy -#| msgid "The number of pending log file fsyncs." msgid "The rate of opening files is high." -msgstr "目前掛起的 fsync 日志檔案數" +msgstr "開啟檔案率過高。" #: libraries/advisory_rules.txt:346 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Opened files rate: %s, this value should be less than 5 per hour" -msgstr "排序快取大小" +msgstr "開啟檔案率: %s,這個值應該每小時低於 5" #: libraries/advisory_rules.txt:348 -#, fuzzy, php-format -#| msgid "Create table on database %s" +#, php-format msgid "Immediate table locks %%" -msgstr "在資料庫 %s 中建立一張資料表" +msgstr "立即資料表鎖定 %%" #: libraries/advisory_rules.txt:351 libraries/advisory_rules.txt:358 -#, fuzzy -#| msgid "The number of times that a table lock was acquired immediately." msgid "Too many table locks were not granted immediately." -msgstr "立即需要鎖定表的次數" +msgstr "太多的資料表鎖定並未立即給予。" #: libraries/advisory_rules.txt:352 libraries/advisory_rules.txt:359 msgid "Optimize queries and/or use InnoDB to reduce lock wait." msgstr "" #: libraries/advisory_rules.txt:353 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Immediate table locks: %s%%, this value should be above 95%%" -msgstr "排序快取大小" +msgstr "立即資料表鎖定: %s%%,這個值應該在 95%% 以上" #: libraries/advisory_rules.txt:355 msgid "Table lock wait rate" msgstr "" #: libraries/advisory_rules.txt:360 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Table lock wait rate: %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "資料表鎖定等待率: %s,這個值應該每小時低於 1" #: libraries/advisory_rules.txt:362 -#, fuzzy -#| msgid "Key cache" msgid "Thread cache" -msgstr "鍵快取" +msgstr "執行緒快取" #: libraries/advisory_rules.txt:365 msgid "" @@ -13520,44 +12965,34 @@ msgid "Enable the thread cache by setting {thread_cache_size} > 0." msgstr "" #: libraries/advisory_rules.txt:367 -#, fuzzy -#| msgid "Tracking is not active." msgid "The thread cache is set to 0" -msgstr "追蹤已停用" +msgstr "執行緒快取已設為零" #: libraries/advisory_rules.txt:369 -#, fuzzy, php-format -#| msgid "Tracking is not active." +#, php-format msgid "Thread cache hit rate %%" -msgstr "追蹤已停用" +msgstr "執行緒快取命中率 %%" #: libraries/advisory_rules.txt:372 -#, fuzzy -#| msgid "Tracking is not active." msgid "Thread cache is not efficient." -msgstr "追蹤已停用" +msgstr "執行緒快取並不是很有效率。" #: libraries/advisory_rules.txt:373 msgid "Increase {thread_cache_size}." msgstr "" #: libraries/advisory_rules.txt:374 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Thread cache hitrate: %s%%, this value should be above 80%%" -msgstr "排序快取大小" +msgstr "執行緒快取命中率: %s%%,這個值應該在 80%% 以上" #: libraries/advisory_rules.txt:376 -#, fuzzy -#| msgid "The number of threads that are not sleeping." msgid "Threads that are slow to launch" -msgstr "非睡眠狀態的程序數量" +msgstr "執行緒為緩慢的啟動" #: libraries/advisory_rules.txt:379 -#, fuzzy -#| msgid "The number of threads that are not sleeping." msgid "There are too many threads that are slow to launch." -msgstr "非睡眠狀態的程序數量" +msgstr "有太多執行緒為緩慢的啟動。" #: libraries/advisory_rules.txt:380 msgid "" @@ -13575,30 +13010,23 @@ msgid "Slow launch time" msgstr "" #: libraries/advisory_rules.txt:386 -#, fuzzy -#| msgid "long_query_time is set to %d second(s)." msgid "Slow_launch_threads is above 2s" -msgstr "long_query_time已設為%d秒" +msgstr "Slow_launch_threads 已超過 2" #: libraries/advisory_rules.txt:387 -#, fuzzy -#| msgid "The number of threads that are not sleeping." msgid "" "Set {slow_launch_time} to 1s or 2s to correctly count threads that are slow " "to launch" -msgstr "非睡眠狀態的程序數量" +msgstr "設定 {slow_launch_time} 為 1 或 2, 以校正緩慢啟動的執行緒數量" #: libraries/advisory_rules.txt:388 -#, fuzzy, php-format -#| msgid "long_query_time is set to %d second(s)." +#, php-format msgid "slow_launch_time is set to %s" -msgstr "long_query_time已設為%d秒" +msgstr "slow_launch_time 已設定為 %s" #: libraries/advisory_rules.txt:392 -#, fuzzy -#| msgid "Persistent connections" msgid "Percentage of used connections" -msgstr "持續連線" +msgstr "已使用的連線百分比" #: libraries/advisory_rules.txt:395 msgid "" @@ -13620,16 +13048,12 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:399 -#, fuzzy -#| msgid "Persistent connections" msgid "Percentage of aborted connections" -msgstr "持續連線" +msgstr "已中斷的連線百分比" #: libraries/advisory_rules.txt:402 libraries/advisory_rules.txt:409 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Too many connections are aborted." -msgstr "允許建立臨時表" +msgstr "有太多的連線被中斷。" #: libraries/advisory_rules.txt:403 libraries/advisory_rules.txt:410 msgid "" @@ -13645,10 +13069,8 @@ msgid "%s%% of all connections are aborted. This value should be below 1%%" msgstr "" #: libraries/advisory_rules.txt:406 -#, fuzzy -#| msgid "Persistent connections" msgid "Rate of aborted connections" -msgstr "持續連線" +msgstr "中斷連線率" #: libraries/advisory_rules.txt:411 #, php-format @@ -13657,16 +13079,12 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:413 -#, fuzzy -#| msgid "Format of imported file" msgid "Percentage of aborted clients" -msgstr "匯入檔案的格式" +msgstr "客端中斷率" #: libraries/advisory_rules.txt:416 libraries/advisory_rules.txt:423 -#, fuzzy -#| msgid "Allows creating temporary tables." msgid "Too many clients are aborted." -msgstr "允許建立臨時表" +msgstr "有太多的客端被中斷。" #: libraries/advisory_rules.txt:417 libraries/advisory_rules.txt:424 msgid "" @@ -13681,26 +13099,21 @@ msgid "%s%% of all clients are aborted. This value should be below 2%%" msgstr "" #: libraries/advisory_rules.txt:420 -#, fuzzy -#| msgid "Format of imported file" msgid "Rate of aborted clients" -msgstr "匯入檔案的格式" +msgstr "客端中斷率" #: libraries/advisory_rules.txt:425 -#, fuzzy, php-format -#| msgid "Sort buffer size" +#, php-format msgid "Aborted client rate is at %s, this value should be less than 1 per hour" -msgstr "排序快取大小" +msgstr "客端中斷率為 %s,這個值應該每小時低於 1" #: libraries/advisory_rules.txt:429 msgid "Is InnoDB disabled?" msgstr "" #: libraries/advisory_rules.txt:432 -#, fuzzy -#| msgid "Could not save recent table" msgid "You do not have InnoDB enabled." -msgstr "無法儲存最新資料表" +msgstr "您未啟用 InnoDB。" #: libraries/advisory_rules.txt:433 msgid "InnoDB is usually the better choice for table engines." @@ -13711,18 +13124,14 @@ msgid "have_innodb is set to 'value'" msgstr "" #: libraries/advisory_rules.txt:436 -#, fuzzy -#| msgid "Buffer pool size" msgid "InnoDB log size" -msgstr "快取池大小" +msgstr "InnoDB 日誌大小" #: libraries/advisory_rules.txt:439 -#, fuzzy -#| msgid "The number writes done to the InnoDB buffer pool." msgid "" "The InnoDB log file size is not an appropriate size, in relation to the " "InnoDB buffer pool." -msgstr "寫入 InnoDB 快取池的次數" +msgstr "InnoDB 日誌檔大小與關聯的 InnoDB 緩衝池不相符。" #: libraries/advisory_rules.txt:440 #, php-format @@ -13739,18 +13148,16 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:441 -#, fuzzy, php-format -#| msgid "The number writes done to the InnoDB buffer pool." +#, php-format msgid "" "Your InnoDB log size is at %s%% in relation to the InnoDB buffer pool size, " "it should not be below 20%%" -msgstr "寫入 InnoDB 快取池的次數" +msgstr "" +"您的 InnoDB 日誌檔大小在 %s%% 關聯到 InnoDB 緩衝池大小, 不應該低於 20%%" #: libraries/advisory_rules.txt:443 -#, fuzzy -#| msgid "Buffer pool size" msgid "Max InnoDB log size" -msgstr "快取池大小" +msgstr "最大 InnoDB 日誌大小" #: libraries/advisory_rules.txt:446 msgid "The InnoDB log file size is inadequately large." @@ -13776,16 +13183,12 @@ msgid "Your absolute InnoDB log size is %s MiB" msgstr "" #: libraries/advisory_rules.txt:450 -#, fuzzy -#| msgid "Buffer pool size" msgid "InnoDB buffer pool size" -msgstr "快取池大小" +msgstr "InnoDB 緩衝池大小" #: libraries/advisory_rules.txt:453 -#, fuzzy -#| msgid "Buffer pool size" msgid "Your InnoDB buffer pool is fairly small." -msgstr "快取池大小" +msgstr "您的 InnoDB 緩衝池過小。" #: libraries/advisory_rules.txt:454 #, php-format @@ -13812,16 +13215,12 @@ msgid "" msgstr "" #: libraries/advisory_rules.txt:459 -#, fuzzy -#| msgid "max. concurrent connections" msgid "MyISAM concurrent inserts" -msgstr "最大同時連線數" +msgstr "MyISAM 同時新增" #: libraries/advisory_rules.txt:462 -#, fuzzy -#| msgid "max. concurrent connections" msgid "Enable {concurrent_insert} by setting it to 1" -msgstr "最大同時連線數" +msgstr "啟用 {concurrent_insert} 設定為 1" #: libraries/advisory_rules.txt:463 msgid "" @@ -13834,6 +13233,9 @@ msgstr "" msgid "concurrent_insert is set to 0" msgstr "concurrent_insert 已被設置為 0" +#~ msgid "Headers every %s rows" +#~ msgstr "每 %s 列顯示欄位標題" + #, fuzzy #~| msgid "Table Search" #~ msgid "Enable reCaptcha" diff --git a/sql.php b/sql.php index 1f0fda58b8..81fb8d5f56 100644 --- a/sql.php +++ b/sql.php @@ -313,24 +313,13 @@ if (isset($_REQUEST['btnDrop']) && $_REQUEST['btnDrop'] == __('No')) { $full_sql_query = $sql_query; // Handle remembered sorting order, only for single table query -if ($GLOBALS['cfg']['RememberSorting'] - && ! ($is_count || $is_export || $is_func || $is_analyse) - && isset($analyzed_sql[0]['select_expr']) - && (count($analyzed_sql[0]['select_expr']) == 0) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && count($analyzed_sql[0]['table_ref']) == 1 -) { +if ($is_remember_sorting_order) { PMA_handleSortOrder($db, $table, $analyzed_sql, $full_sql_query); } $sql_limit_to_append = ''; // Do append a "LIMIT" clause? -if (($_SESSION['tmp_user_values']['max_rows'] != 'all') - && ! ($is_count || $is_export || $is_func || $is_analyse) - && isset($analyzed_sql[0]['queryflags']['select_from']) - && ! isset($analyzed_sql[0]['queryflags']['offset']) - && empty($analyzed_sql[0]['limit_clause']) -) { +if ($is_append_limit_clause) { $sql_limit_to_append = ' LIMIT ' . $_SESSION['tmp_user_values']['pos'] . ', ' . $_SESSION['tmp_user_values']['max_rows'] . " "; $full_sql_query = PMA_getSqlWithLimitClause( @@ -360,7 +349,14 @@ if (($_SESSION['tmp_user_values']['max_rows'] != 'all') } } -if (strlen($db)) { +if (strlen($db)) { + // Checks if the current database has changed + // This could happen if the user sends a query like "USE `database`;" + $current_db = $GLOBALS['dbi']->fetchValue('SELECT DATABASE()'); + if ($db !== $current_db) { + $reload = 1; + } + unset($current_db); $GLOBALS['dbi']->selectDb($db); } @@ -481,21 +477,6 @@ if (isset($GLOBALS['show_as_php']) || ! empty($GLOBALS['validatequery'])) { $profiling_results = $GLOBALS['dbi']->fetchResult('SHOW PROFILE;'); } - // Checks if the current database has changed - // This could happen if the user sends a query like "USE `database`;" - /** - * commented out auto-switching to active database - really required? - * bug #2558 win: table list disappears (mixed case db names) - * https://sourceforge.net/p/phpmyadmin/bugs/2558/ - * @todo RELEASE test and comit or rollback before release - $current_db = $GLOBALS['dbi']->fetchValue('SELECT DATABASE()'); - if ($db !== $current_db) { - $db = $current_db; - $reload = 1; - } - unset($current_db); - */ - // tmpfile remove after convert encoding appended by Y.Kawada if (function_exists('PMA_Kanji_fileConv') && (isset($textfile) && file_exists($textfile)) @@ -1018,45 +999,10 @@ if ((0 == $num_rows && 0 == $unlim_num_rows) || $is_affected) { . PMA_generate_common_url($db, $table) . '&sql_query=' . urlencode($sql_query) . '&id_bookmark=1'; - - $html_output .= ''; - $html_output .= PMA_generate_common_hidden_inputs(); - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= PMA_Util::getIcon( - 'b_bookmark.png', __('Bookmark this SQL query'), true + $bkm_sql_query = urlencode( + isset($complete_query) ? $complete_query : $sql_query ); - $html_output .= ''; - $html_output .= ''; - $html_output .= '' . __('Label:') . ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= '' - . __('Let every user access this bookmark') - . ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; - $html_output .= ''; + $html_output .= PMA_getHtmlForBookmark($db, $goto, $bkm_sql_query, $cfg['Bookmark']['user']); } // end bookmark support // Do print the page if required diff --git a/tbl_tracking.php b/tbl_tracking.php index 3e71694f84..f2581d25d7 100644 --- a/tbl_tracking.php +++ b/tbl_tracking.php @@ -62,23 +62,24 @@ if (isset($_REQUEST['report_export'])) { * * @return array filtered entries */ - function PMA_filter_tracking( + function PMA_filterTracking( $data, $filter_ts_from, $filter_ts_to, $filter_users ) { $tmp_entries = array(); $id = 0; - foreach ( $data as $entry ) { + foreach ($data as $entry) { $timestamp = strtotime($entry['date']); if ($timestamp >= $filter_ts_from && $timestamp <= $filter_ts_to && (in_array('*', $filter_users) || in_array($entry['username'], $filter_users)) ) { - $tmp_entries[] = array( 'id' => $id, - 'timestamp' => $timestamp, - 'username' => $entry['username'], - 'statement' => $entry['statement'] - ); + $tmp_entries[] = array( + 'id' => $id, + 'timestamp' => $timestamp, + 'username' => $entry['username'], + 'statement' => $entry['statement'] + ); } $id++; } @@ -92,7 +93,7 @@ if (isset($_REQUEST['report_export'])) { ) { $entries = array_merge( $entries, - PMA_filter_tracking( + PMA_filterTracking( $data['ddlog'], $filter_ts_from, $filter_ts_to, $filter_users ) ); @@ -104,7 +105,7 @@ if (isset($_REQUEST['report_export'])) { ) { $entries = array_merge( $entries, - PMA_filter_tracking( + PMA_filterTracking( $data['dmlog'], $filter_ts_from, $filter_ts_to, $filter_users ) ); diff --git a/test/libraries/PMA_STR_sub_test.php b/test/libraries/PMA_STR_sub_test.php index 9a0bb8e6f6..e4bf4add7e 100644 --- a/test/libraries/PMA_STR_sub_test.php +++ b/test/libraries/PMA_STR_sub_test.php @@ -18,7 +18,7 @@ class PMA_STR_Sub_Test extends PHPUnit_Framework_TestCase } $this->assertEquals( 'čšě', - PMA_substr('čšěčščěš', 0, 3) + $GLOBALS['PMA_String']::substr('čšěčščěš', 0, 3) ); } }